diff options
author | Gusted <williamzijl7@hotmail.com> | 2022-07-05 14:28:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-05 13:28:31 +0100 |
commit | ed13d7aadf75246a3b9ba68c5cd2def867f89f43 (patch) | |
tree | b6937580f3120f7ccedf3739cec55367d587c868 /web_src/js/index.js | |
parent | f5c97172f0e725b2bb2d00d281d82caf4dd72b9d (diff) | |
download | gitea-ed13d7aadf75246a3b9ba68c5cd2def867f89f43.tar.gz gitea-ed13d7aadf75246a3b9ba68c5cd2def867f89f43.zip |
Init popup for new code comment (#20234)
- Initialize the popup for the tooltip inside the new code comment.
- This works and is good enough to have this issue fixed for 1.17
Fix #20068
Diffstat (limited to 'web_src/js/index.js')
-rw-r--r-- | web_src/js/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/web_src/js/index.js b/web_src/js/index.js index 0568da64ae..6f872b5353 100644 --- a/web_src/js/index.js +++ b/web_src/js/index.js @@ -56,6 +56,7 @@ import { initGlobalFormDirtyLeaveConfirm, initGlobalLinkActions, initHeadNavbarContentToggle, + initGlobalPopups, } from './features/common-global.js'; import {initRepoTopicBar} from './features/repo-home.js'; import {initAdminEmails} from './features/admin-emails.js'; @@ -99,6 +100,7 @@ initVueEnv(); $(document).ready(() => { initGlobalCommon(); + initGlobalPopups(); initGlobalButtonClickOnEnter(); initGlobalButtons(); initGlobalCopyToClipboardListener(); |