summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-11-15 21:01:44 -0200
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-11-15 21:39:38 -0200
commit2544e7b7892ccb5abc259c56c08db95c2344cc5f (patch)
tree425e128f0b856dfca053f316671ed11c2fb8154e
parentce89b567478ba63d32659975d65a36746ebbc2cc (diff)
downloadgitlab-ce-2544e7b7892ccb5abc259c56c08db95c2344cc5f.tar.gz
Rename LabelSubscription javascript to ProjectLabelSubscription
-rw-r--r--app/assets/javascripts/project_label_subscription.js.es6 (renamed from app/assets/javascripts/label_subscription.js.es6)4
-rw-r--r--app/views/shared/_label.html.haml2
2 files changed, 3 insertions, 3 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 = {}));
diff --git a/app/views/shared/_label.html.haml b/app/views/shared/_label.html.haml
index fb75e130140..e2495b00f52 100644
--- a/app/views/shared/_label.html.haml
+++ b/app/views/shared/_label.html.haml
@@ -79,7 +79,7 @@
- if current_user && defined?(@project)
- if label.is_a?(ProjectLabel)
:javascript
- new gl.LabelSubscription('##{dom_id(label)} .label-subscription');
+ new gl.ProjectLabelSubscription('##{dom_id(label)} .label-subscription');
- else
:javascript
new gl.GroupLabelSubscription('##{dom_id(label)} .label-subscription');