You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

17 lines
443 B

5 years ago
import { ConsoleFramePresenterImpl } from './presenters/ConsoleFramePresenter';
import consoleFrameStyle from './site-style';
5 years ago
import * as routes from './routes';
if (window.self === window.top) {
5 years ago
routes.routeMasterComponents();
5 years ago
new ConsoleFramePresenterImpl().initialize();
}
5 years ago
routes.routeComponents();
let style = window.document.createElement('style');
5 years ago
style.textContent = consoleFrameStyle;
window.document.head.appendChild(style);