summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/shortcuts_find_file.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/shortcuts_find_file.js')
-rw-r--r--app/assets/javascripts/shortcuts_find_file.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/shortcuts_find_file.js b/app/assets/javascripts/shortcuts_find_file.js
index a27ac264a5c..b18b6139b35 100644
--- a/app/assets/javascripts/shortcuts_find_file.js
+++ b/app/assets/javascripts/shortcuts_find_file.js
@@ -2,7 +2,7 @@
/* global Mousetrap */
/* global ShortcutsNavigation */
-require('./shortcuts_navigation');
+import './shortcuts_navigation';
(function() {
var extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },