Source code

Revision control

Copy as Markdown

Other Tools

/* eslint no-console:0 */
import {onLoad} from './app'
import {$on} from './helpers'
// this is only relevant when using `hot` mode with webpack
const reloading = document.readyState === 'complete'
if (module.hot) {
module.hot.accept(function(err) {
})
if (reloading) {
onLoad()
} else {
bootstrap()
}
} else {
bootstrap()
}
function bootstrap() {
$on(window, 'load', onLoad)
$on(window, 'hashchange', onLoad)
}