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:
authorAlfredo Sumaran <alfredo@gitlab.com>2017-02-23 05:53:01 +0300
committerAlfredo Sumaran <alfredo@gitlab.com>2017-02-23 05:53:01 +0300
commit3651689e1a51ce13e810414df025a07de7e48bde (patch)
tree81a022be7f5460fc1b37db5413ece63b178d39bc
parentca9d303db735d4a70d906745bf3ce5e479473d2e (diff)
parent87b19b8cae067bd328c1e6a1cec4fa06a73e8b96 (diff)
Merge branch 'remove-require-context-graphs-bundle' into 'master'
Remove require.context from graphs_bundle See merge request !9459
-rw-r--r--app/assets/javascripts/graphs/graphs_bundle.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/app/assets/javascripts/graphs/graphs_bundle.js b/app/assets/javascripts/graphs/graphs_bundle.js
index 4f7777aa5bc..086dcb34571 100644
--- a/app/assets/javascripts/graphs/graphs_bundle.js
+++ b/app/assets/javascripts/graphs/graphs_bundle.js
@@ -1,3 +1,4 @@
-// require everything else in this directory
-function requireAll(context) { return context.keys().map(context); }
-requireAll(require.context('.', false, /^\.\/(?!graphs_bundle).*\.(js|es6)$/));
+require('./stat_graph_contributors_graph');
+require('./stat_graph_contributors_util');
+require('./stat_graph_contributors');
+require('./stat_graph');