diff options
author | Phil Hughes <me@iamphill.com> | 2018-03-12 10:55:46 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-03-12 10:55:46 +0000 |
commit | bd26e012fcd50d0ff5c1ad7febc9d6355e43a6fc (patch) | |
tree | 7404d154addee886ec82b31451df60cec9babb2d /app/assets/javascripts/help/help.js | |
parent | 57e84c305f124b7e68fb7e4c22d34a247a13d3dd (diff) | |
parent | f248be7257e82d15fa6441c551e4314bd36343d4 (diff) | |
download | gitlab-ce-bd26e012fcd50d0ff5c1ad7febc9d6355e43a6fc.tar.gz |
Merge branch 'remove-jquery-globals' into 'master'
Require jQuery to be explicitly imported
See merge request gitlab-org/gitlab-ce!17674
Diffstat (limited to 'app/assets/javascripts/help/help.js')
-rw-r--r-- | app/assets/javascripts/help/help.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/assets/javascripts/help/help.js b/app/assets/javascripts/help/help.js index d02477b19a2..f5333042bb8 100644 --- a/app/assets/javascripts/help/help.js +++ b/app/assets/javascripts/help/help.js @@ -1,4 +1,7 @@ // We will render the icons list here + +import $ from 'jquery'; + export default () => { if ($('#user-content-gitlab-icons').length > 0) { const $iconsHeader = $('#user-content-gitlab-icons'); |