Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <ClemMakesApps@gmail.com>2017-09-19 20:40:03 +0300
committerClement Ho <ClemMakesApps@gmail.com>2017-09-19 20:42:34 +0300
commitca093c4247b492e86cfae3a2c58dcf90a094ff76 (patch)
tree6024c55276f76cdb1d38397a122e3c11e919a3e9 /app/assets/javascripts/feature_highlight/feature_highlight_options.js
parent727f51b8ef0af2b78087b4ac894ee728bfbabd1f (diff)
Revert feature highlight
Diffstat (limited to 'app/assets/javascripts/feature_highlight/feature_highlight_options.js')
-rw-r--r--app/assets/javascripts/feature_highlight/feature_highlight_options.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/app/assets/javascripts/feature_highlight/feature_highlight_options.js b/app/assets/javascripts/feature_highlight/feature_highlight_options.js
deleted file mode 100644
index fd48f2e87cc..00000000000
--- a/app/assets/javascripts/feature_highlight/feature_highlight_options.js
+++ /dev/null
@@ -1,12 +0,0 @@
-import { highlightFeatures } from './feature_highlight';
-import bp from '../breakpoints';
-
-const highlightOrder = ['issue-boards'];
-
-export default function domContentLoaded(order) {
- if (bp.getBreakpointSize() === 'lg') {
- highlightFeatures(order);
- }
-}
-
-document.addEventListener('DOMContentLoaded', domContentLoaded.bind(this, highlightOrder));