diff options
| author | Mike Greiling <mike@pixelcog.com> | 2018-03-09 14:18:59 -0600 |
|---|---|---|
| committer | Mike Greiling <mike@pixelcog.com> | 2018-03-09 15:18:09 -0600 |
| commit | f248be7257e82d15fa6441c551e4314bd36343d4 (patch) | |
| tree | 773b6eefd1ae186432ec1c5fa469d80dbcec4349 /app/assets/javascripts/feature_highlight | |
| parent | c591cf539072f8ef25ed5afc162bc7e87348cc15 (diff) | |
| download | gitlab-ce-remove-jquery-globals.tar.gz | |
require jQuery to be explicitly importedremove-jquery-globals
Diffstat (limited to 'app/assets/javascripts/feature_highlight')
| -rw-r--r-- | app/assets/javascripts/feature_highlight/feature_highlight.js | 1 | ||||
| -rw-r--r-- | app/assets/javascripts/feature_highlight/feature_highlight_helper.js | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/app/assets/javascripts/feature_highlight/feature_highlight.js b/app/assets/javascripts/feature_highlight/feature_highlight.js index d65cc6d5d7d..c50ac667c20 100644 --- a/app/assets/javascripts/feature_highlight/feature_highlight.js +++ b/app/assets/javascripts/feature_highlight/feature_highlight.js @@ -1,3 +1,4 @@ +import $ from 'jquery'; import _ from 'underscore'; import { getSelector, diff --git a/app/assets/javascripts/feature_highlight/feature_highlight_helper.js b/app/assets/javascripts/feature_highlight/feature_highlight_helper.js index 939d12237f3..f480e72961c 100644 --- a/app/assets/javascripts/feature_highlight/feature_highlight_helper.js +++ b/app/assets/javascripts/feature_highlight/feature_highlight_helper.js @@ -1,3 +1,4 @@ +import $ from 'jquery'; import axios from '../lib/utils/axios_utils'; import { __ } from '../locale'; import Flash from '../flash'; |
