run scripts on background page after onLoad
This commit is contained in:
parent
5e447b8bc2
commit
c82c605656
@ -22,20 +22,21 @@
|
||||
|
||||
"use strict";
|
||||
|
||||
// TypeScript does not allow ".js" extensions in the
|
||||
// module name, so SystemJS must add it.
|
||||
System.config({
|
||||
defaultJSExtensions: true,
|
||||
});
|
||||
window.addEventListener("load", () => {
|
||||
|
||||
// TypeScript does not allow ".js" extensions in the
|
||||
// module name, so SystemJS must add it.
|
||||
System.config({
|
||||
defaultJSExtensions: true,
|
||||
});
|
||||
|
||||
System.import("../lib/wallet/wxMessaging")
|
||||
.then((wxMessaging) => {
|
||||
// Export as global for debugger
|
||||
(window as any).wxMessaging = wxMessaging;
|
||||
wxMessaging.wxMain();
|
||||
})
|
||||
.catch((e) => {
|
||||
console.log("wallet failed");
|
||||
console.error(e.stack);
|
||||
});
|
||||
System.import("../lib/wallet/wxMessaging")
|
||||
.then((wxMessaging) => {
|
||||
// Export as global for debugger
|
||||
(window as any).wxMessaging = wxMessaging;
|
||||
wxMessaging.wxMain();
|
||||
}).catch((e) => {
|
||||
console.log("wallet failed");
|
||||
console.error(e.stack);
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user