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:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-11-16 02:01:44 +0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-11-17 20:10:13 +0300
commite2865c232efd4350dd82d0fbdfdf2f226e4e8461 (patch)
tree78de20903a9e0af41763e8fa3883a497036d0170 /app/assets/javascripts
parenta0accaf7cce23f53066335629e52407172ef60c5 (diff)
Rename LabelSubscription javascript to ProjectLabelSubscription
Diffstat (limited to 'app/assets/javascripts')
-rw-r--r--app/assets/javascripts/project_label_subscription.js.es6 (renamed from app/assets/javascripts/label_subscription.js.es6)4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/label_subscription.js.es6 b/app/assets/javascripts/project_label_subscription.js.es6
index 4ee8e02b088..fd5146e2f12 100644
--- a/app/assets/javascripts/label_subscription.js.es6
+++ b/app/assets/javascripts/project_label_subscription.js.es6
@@ -1,6 +1,6 @@
/* eslint-disable */
(function(global) {
- class LabelSubscription {
+ class ProjectLabelSubscription {
constructor(container) {
this.$container = $(container);
this.$buttons = this.$container.find('.js-subscribe-button');
@@ -48,6 +48,6 @@
}
}
- global.LabelSubscription = LabelSubscription;
+ global.ProjectLabelSubscription = ProjectLabelSubscription;
})(window.gl || (window.gl = {}));