Rename LabelSubscription javascript to ProjectLabelSubscription

This commit is contained in:
Douglas Barbosa Alexandre 2016-11-15 21:01:44 -02:00
parent a0accaf7cc
commit e2865c232e
2 changed files with 3 additions and 3 deletions

View File

@ -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 = {}));

View File

@ -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');