20 lines
503 B
JavaScript
20 lines
503 B
JavaScript
|
$SCRIPTS$
|
||
|
|
||
|
System.config({
|
||
|
baseURL: '/',
|
||
|
defaultJSExtensions: true,
|
||
|
paths: {'rx': 'examples/src/web_workers/message_broker/rx.js'}
|
||
|
});
|
||
|
|
||
|
System.import("examples/src/web_workers/message_broker/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); });
|