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>2018-03-02 19:28:26 +0300
committerJacob Schatz <jschatz@gitlab.com>2018-03-02 19:28:26 +0300
commit834f4de181c07d527b9b91d889e0c5b6da8440c4 (patch)
tree348c9666d2c927da8c4f26094e4062bae82cef4d /app/assets/javascripts/protected_branches
parent9b704ef327cc0224bf09c1e8d8d27df88ab13734 (diff)
Remove protected branches webpack bundle tag
Diffstat (limited to 'app/assets/javascripts/protected_branches')
-rw-r--r--app/assets/javascripts/protected_branches/index.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/app/assets/javascripts/protected_branches/index.js b/app/assets/javascripts/protected_branches/index.js
deleted file mode 100644
index c9e7af127d2..00000000000
--- a/app/assets/javascripts/protected_branches/index.js
+++ /dev/null
@@ -1,9 +0,0 @@
-/* eslint-disable no-unused-vars */
-
-import ProtectedBranchCreate from './protected_branch_create';
-import ProtectedBranchEditList from './protected_branch_edit_list';
-
-$(() => {
- const protectedBranchCreate = new ProtectedBranchCreate();
- const protectedBranchEditList = new ProtectedBranchEditList();
-});