diff options
Diffstat (limited to 'web_src/js/index.js')
-rw-r--r-- | web_src/js/index.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/web_src/js/index.js b/web_src/js/index.js index b7eba5e664..18b949e4e6 100644 --- a/web_src/js/index.js +++ b/web_src/js/index.js @@ -1,4 +1,5 @@ -import './publicpath.js'; +// bootstrap module must be the first one to be imported, it handles webpack lazy-loading and global errors +import './bootstrap.js'; import $ from 'jquery'; import {initVueEnv} from './components/VueComponentLoader.js'; @@ -39,6 +40,7 @@ import { } from './features/repo-issue.js'; import {initRepoEllipsisButton, initRepoCommitLastCommitLoader} from './features/repo-commit.js'; import { + checkAppUrl, initFootLanguageMenu, initGlobalButtonClickOnEnter, initGlobalButtons, @@ -82,7 +84,6 @@ $.fn.tab.settings.silent = true; $.fn.checkbox.settings.enableEnterKey = false; initVueEnv(); - $(document).ready(() => { initGlobalCommon(); @@ -169,4 +170,6 @@ $(document).ready(() => { initUserAuthWebAuthn(); initUserAuthWebAuthnRegister(); initUserSettings(); + + checkAppUrl(); }); |