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:
authorPhil Hughes <me@iamphill.com>2017-12-15 15:57:08 +0300
committerPhil Hughes <me@iamphill.com>2017-12-15 19:37:49 +0300
commit6a33587182ef13179d2dc00a6698cb42f2e7138e (patch)
tree1d2329e2e53896aeb60864041e310e6394d1cdae /app/assets/javascripts/line_highlighter.js
parent627a96875ee68e37b45192af3121f09032ea4bbf (diff)
Exported JS classes as modules
Diffstat (limited to 'app/assets/javascripts/line_highlighter.js')
-rw-r--r--app/assets/javascripts/line_highlighter.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/line_highlighter.js b/app/assets/javascripts/line_highlighter.js
index a75d1a4b8d0..fbd381d8ff7 100644
--- a/app/assets/javascripts/line_highlighter.js
+++ b/app/assets/javascripts/line_highlighter.js
@@ -175,4 +175,4 @@ LineHighlighter.prototype.__setLocationHash__ = function(value) {
}, document.title, value);
};
-window.LineHighlighter = LineHighlighter;
+export default LineHighlighter;