Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
lixinyang123 committed Apr 2, 2024
1 parent 32d5a13 commit ae64825
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ function guid() {
}

function navigation(name, isBack = false) {
if (onNavigation) onNavigation(name, isBack)

window.scrollTo(0, 0);
loadingState(true);
Expand All @@ -87,6 +86,8 @@ function navigation(name, isBack = false) {
navigation("notfound");
loadingState(false);
}

if (onNavigation) onNavigation(name, isBack)
});
}

Expand Down

0 comments on commit ae64825

Please sign in to comment.