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:
authorConstance Okoghenun <cokoghenun@gitlab.com>2018-02-23 23:23:27 +0300
committerConstance Okoghenun <cokoghenun@gitlab.com>2018-02-23 23:23:27 +0300
commitfd598fd6bda91343d7e271c0fe485ead9e0011d2 (patch)
tree62e7eacb8bbdd5b54f555e97c14c98ec96223280 /app/assets/javascripts/protected_tags
parent132452a6c17704159a0f99fc04b290a3fc1e2f59 (diff)
Removed protected_tags webpack bundle
Diffstat (limited to 'app/assets/javascripts/protected_tags')
-rw-r--r--app/assets/javascripts/protected_tags/index.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/app/assets/javascripts/protected_tags/index.js b/app/assets/javascripts/protected_tags/index.js
deleted file mode 100644
index b1618e24e49..00000000000
--- a/app/assets/javascripts/protected_tags/index.js
+++ /dev/null
@@ -1,9 +0,0 @@
-/* eslint-disable no-unused-vars */
-
-import ProtectedTagCreate from './protected_tag_create';
-import ProtectedTagEditList from './protected_tag_edit_list';
-
-$(() => {
- const protectedtTagCreate = new ProtectedTagCreate();
- const protectedtTagEditList = new ProtectedTagEditList();
-});