@etsoo/appscript 1.2.92 → 1.2.93

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.
@@ -990,7 +990,7 @@ class CoreApp {
990
990
  * @param url Url
991
991
  */
992
992
  redirectTo(url) {
993
- window.location.href = url;
993
+ globalThis.location.href = url;
994
994
  }
995
995
  /**
996
996
  * Refresh countdown
@@ -987,7 +987,7 @@ export class CoreApp {
987
987
  * @param url Url
988
988
  */
989
989
  redirectTo(url) {
990
- window.location.href = url;
990
+ globalThis.location.href = url;
991
991
  }
992
992
  /**
993
993
  * Refresh countdown
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.2.92",
3
+ "version": "1.2.93",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -1315,7 +1315,7 @@ export abstract class CoreApp<
1315
1315
  * @param url Url
1316
1316
  */
1317
1317
  redirectTo(url: string): void {
1318
- window.location.href = url;
1318
+ globalThis.location.href = url;
1319
1319
  }
1320
1320
 
1321
1321
  /**