Rename LabelSubscription javascript to ProjectLabelSubscription

parent a0accaf7
/* 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 = {}));
......@@ -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');
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment