We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3de518e commit 4fb4ad4Copy full SHA for 4fb4ad4
tApp.js
@@ -87,7 +87,9 @@ class tApp {
87
} else {
88
throw "tAppError: Invalid path, the path can only be \"/\" or start with \"#\".";
89
}
90
- tApp.updatePage(window.location.hash);
+ if(tApp.started) {
91
+ tApp.updatePage(window.location.hash);
92
+ }
93
94
static getCachedPage(fullPath) {
95
return new Promise((resolve, reject) => {
0 commit comments