@etsoo/appscript 1.4.80 → 1.4.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/app/CoreApp.js +3 -1
- package/lib/mjs/app/CoreApp.js +3 -1
- package/package.json +1 -1
- package/src/app/CoreApp.ts +3 -1
package/lib/cjs/app/CoreApp.js
CHANGED
|
@@ -147,7 +147,9 @@ class CoreApp {
|
|
|
147
147
|
const { currentCulture, currentRegion } = settings;
|
|
148
148
|
// Load resources
|
|
149
149
|
Promise.all([loadCrypto(), this.changeCulture(currentCulture)]).then(([cj, _resources]) => {
|
|
150
|
-
(
|
|
150
|
+
console.log('CoreApp Init', cj, _resources);
|
|
151
|
+
CJ = cj;
|
|
152
|
+
this.changeRegion(currentRegion);
|
|
151
153
|
this.setup();
|
|
152
154
|
});
|
|
153
155
|
}
|
package/lib/mjs/app/CoreApp.js
CHANGED
|
@@ -144,7 +144,9 @@ export class CoreApp {
|
|
|
144
144
|
const { currentCulture, currentRegion } = settings;
|
|
145
145
|
// Load resources
|
|
146
146
|
Promise.all([loadCrypto(), this.changeCulture(currentCulture)]).then(([cj, _resources]) => {
|
|
147
|
-
(
|
|
147
|
+
console.log('CoreApp Init', cj, _resources);
|
|
148
|
+
CJ = cj;
|
|
149
|
+
this.changeRegion(currentRegion);
|
|
148
150
|
this.setup();
|
|
149
151
|
});
|
|
150
152
|
}
|
package/package.json
CHANGED
package/src/app/CoreApp.ts
CHANGED
|
@@ -298,7 +298,9 @@ export abstract class CoreApp<
|
|
|
298
298
|
// Load resources
|
|
299
299
|
Promise.all([loadCrypto(), this.changeCulture(currentCulture)]).then(
|
|
300
300
|
([cj, _resources]) => {
|
|
301
|
-
(
|
|
301
|
+
console.log('CoreApp Init', cj, _resources);
|
|
302
|
+
CJ = cj;
|
|
303
|
+
this.changeRegion(currentRegion);
|
|
302
304
|
this.setup();
|
|
303
305
|
}
|
|
304
306
|
);
|