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/blob/viewer/index.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/blob/viewer/index.js')
-rw-r--r-- | app/assets/javascripts/blob/viewer/index.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/assets/javascripts/blob/viewer/index.js b/app/assets/javascripts/blob/viewer/index.js index 92ea91c45a8..137e1f5a099 100644 --- a/app/assets/javascripts/blob/viewer/index.js +++ b/app/assets/javascripts/blob/viewer/index.js @@ -1,3 +1,4 @@ +import $ from 'jquery'; import Flash from '../../flash'; import { handleLocationHash } from '../../lib/utils/common_utils'; import axios from '../../lib/utils/axios_utils'; |