ts-glitter 13.8.731 → 13.8.732
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/lowcode/Entry.js
CHANGED
|
@@ -68,7 +68,7 @@ export class Entry {
|
|
|
68
68
|
}
|
|
69
69
|
window.renderClock = (_a = window.renderClock) !== null && _a !== void 0 ? _a : clockF();
|
|
70
70
|
console.log(`Entry-time:`, window.renderClock.stop());
|
|
71
|
-
glitter.share.editerVersion = 'V_13.8.
|
|
71
|
+
glitter.share.editerVersion = 'V_13.8.732';
|
|
72
72
|
glitter.share.start = new Date();
|
|
73
73
|
const vm = {
|
|
74
74
|
appConfig: [],
|
package/lowcode/Entry.ts
CHANGED
|
@@ -69,7 +69,7 @@ export class Entry {
|
|
|
69
69
|
}
|
|
70
70
|
(window as any).renderClock = (window as any).renderClock ?? clockF();
|
|
71
71
|
console.log(`Entry-time:`, (window as any).renderClock.stop());
|
|
72
|
-
glitter.share.editerVersion = 'V_13.8.
|
|
72
|
+
glitter.share.editerVersion = 'V_13.8.732';
|
|
73
73
|
glitter.share.start = new Date();
|
|
74
74
|
const vm: {
|
|
75
75
|
appConfig: any;
|
|
@@ -540,7 +540,7 @@ export class Glitter {
|
|
|
540
540
|
set href(value) {
|
|
541
541
|
const link = new URL(value, location.href);
|
|
542
542
|
if ((location.origin) === (link.origin)) {
|
|
543
|
-
if (link.searchParams.get("page")
|
|
543
|
+
if (link.searchParams.get("page")) {
|
|
544
544
|
const page = link.searchParams.get("page");
|
|
545
545
|
link.searchParams.delete("page");
|
|
546
546
|
link.pathname += page;
|
|
@@ -59,7 +59,7 @@ export class Glitter {
|
|
|
59
59
|
set href(value) {
|
|
60
60
|
const link = new URL(value, location.href);
|
|
61
61
|
if ((location.origin) === (link.origin)) {
|
|
62
|
-
if(link.searchParams.get("page")
|
|
62
|
+
if(link.searchParams.get("page")) {
|
|
63
63
|
const page=link.searchParams.get("page")
|
|
64
64
|
link.searchParams.delete("page");
|
|
65
65
|
link.pathname+=page
|