From e2865c232efd4350dd82d0fbdfdf2f226e4e8461 Mon Sep 17 00:00:00 2001 From: Douglas Barbosa Alexandre Date: Tue, 15 Nov 2016 21:01:44 -0200 Subject: [PATCH] Rename LabelSubscription javascript to ProjectLabelSubscription --- ..._subscription.js.es6 => project_label_subscription.js.es6} | 4 ++-- app/views/shared/_label.html.haml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename app/assets/javascripts/{label_subscription.js.es6 => project_label_subscription.js.es6} (93%) diff --git a/app/assets/javascripts/label_subscription.js.es6 b/app/assets/javascripts/project_label_subscription.js.es6 similarity index 93% rename from app/assets/javascripts/label_subscription.js.es6 rename to 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');