diff options
author | silverwind <me@silverwind.io> | 2022-01-28 13:00:11 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-28 21:00:11 +0000 |
commit | 19b017f3986655468d72b383141256f11d58c186 (patch) | |
tree | 3d9856a8515936f704f4be2dc008365092dbef7e /web_src/js/markup | |
parent | 7b04c97b7b0fd96676c94e02a857a43a6ef32b3d (diff) | |
download | gitea-19b017f3986655468d72b383141256f11d58c186.tar.gz gitea-19b017f3986655468d72b383141256f11d58c186.zip |
Use explicit jQuery import, remove unused eslint globals (#18435)
- Don't rely on globals (window.$) for jQuery import
- Remove eslint globals no longer in use
Diffstat (limited to 'web_src/js/markup')
-rw-r--r-- | web_src/js/markup/tasklist.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/web_src/js/markup/tasklist.js b/web_src/js/markup/tasklist.js index 149027d428..0f03837baa 100644 --- a/web_src/js/markup/tasklist.js +++ b/web_src/js/markup/tasklist.js @@ -1,3 +1,7 @@ +import $ from 'jquery'; + +const preventListener = (e) => e.preventDefault(); + /** * Attaches `input` handlers to markdown rendered tasklist checkboxes in comments. * @@ -5,9 +9,6 @@ * is set accordingly and sent to the server. On success it updates the raw-content on * error it resets the checkbox to its original value. */ - -const preventListener = (e) => e.preventDefault(); - export function initMarkupTasklist() { for (const el of document.querySelectorAll(`.markup[data-can-edit=true]`) || []) { const container = el.parentNode; |