Sha256: eac39449c5fd2c85ee539ec8776ac4bfeb986b00a4cb9f8572ba6bf5117bc1e6
Contents?: true
Size: 555 Bytes
Versions: 30
Compression:
Stored size: 555 Bytes
Contents
/** @jsx h */ import { render, h } from 'preact'; import 'jquery'; import './bootstrap/bootstrap.css'; import './bootstrap/bootstrap.js'; import PageMain from './PageMain.jsx'; import './PageMain.css'; window.errorPageExtensions = []; function initialize(pageMain) { window.ErrorPage = pageMain; for (var i = 0; i < window.errorPageExtensions.length; i++) { window.errorPageExtensions[i](); } } window.renderErrorPage = function() { render( <PageMain spec={window.spec} ref={ initialize } />, document.getElementById('root') ); }
Version data entries
30 entries across 30 versions & 1 rubygems