summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/feature_highlight
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-12-23 15:07:48 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2019-12-23 15:07:48 +0000
commitfda8735029d5aea76060f2e2b071ebcd6cd0777e (patch)
tree785f01501ab938aeed86fea53063e4598dd28d81 /app/assets/javascripts/feature_highlight
parent4aeb8a02c506eaa8f0710ee17edd9e35dd68d280 (diff)
downloadgitlab-ce-fda8735029d5aea76060f2e2b071ebcd6cd0777e.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/feature_highlight')
-rw-r--r--app/assets/javascripts/feature_highlight/feature_highlight_options.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/feature_highlight/feature_highlight_options.js b/app/assets/javascripts/feature_highlight/feature_highlight_options.js
index 212643b1e04..c5553f0243f 100644
--- a/app/assets/javascripts/feature_highlight/feature_highlight_options.js
+++ b/app/assets/javascripts/feature_highlight/feature_highlight_options.js
@@ -1,8 +1,8 @@
+import { GlBreakpointInstance as bp } from '@gitlab/ui/dist/utils';
import { highlightFeatures } from './feature_highlight';
-import bp from '../breakpoints';
export default function domContentLoaded() {
- if (bp.getBreakpointSize() === 'lg') {
+ if (bp.getBreakpointSize() === 'xl') {
highlightFeatures();
return true;
}