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/features/repo-editor.js | |
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/features/repo-editor.js')
-rw-r--r-- | web_src/js/features/repo-editor.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web_src/js/features/repo-editor.js b/web_src/js/features/repo-editor.js index 571fed9d27..f32bdbb8c3 100644 --- a/web_src/js/features/repo-editor.js +++ b/web_src/js/features/repo-editor.js @@ -1,9 +1,9 @@ +import $ from 'jquery'; import {htmlEscape} from 'escape-goat'; import {initMarkupContent} from '../markup/content.js'; import {createCodeEditor} from './codeeditor.js'; const {csrfToken} = window.config; - let previewFileModes; function initEditPreviewTab($form) { |