22 lines
487 B
JavaScript
Raw Normal View History

$SCRIPTS$
System.config({
baseURL: '/',
defaultJSExtensions: true,
paths: {
'rx': 'examples/src/web_workers/kitchen_sink/rx.js'
}
});
System.import("examples/src/web_workers/kitchen_sink/background_index")
.then(
function(m) {
console.log("running main");
try {
m.main();
} catch (e) {
console.error(e);
}
},
function(error) { console.error("error loading background", error); });