From c344152f32ce312e4a1bdac455a6ad8f4d0d569f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Wed, 19 Nov 2014 18:00:48 +0100 Subject: [PATCH] Change show/hide to add/removeClass in meetup button --- app/coffee/modules/admin/project-profile.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/coffee/modules/admin/project-profile.coffee b/app/coffee/modules/admin/project-profile.coffee index 3c1b3505..499452cb 100644 --- a/app/coffee/modules/admin/project-profile.coffee +++ b/app/coffee/modules/admin/project-profile.coffee @@ -165,9 +165,9 @@ ProjectModulesDirective = ($repo, $confirm, $loading) -> $scope.$watch "isVideoconferenceActivated", (isVideoconferenceActivated) -> if isVideoconferenceActivated - $el.find(".videoconference-attributes").show() + $el.find(".videoconference-attributes").removeClass("hidden") else - $el.find(".videoconference-attributes").hide() + $el.find(".videoconference-attributes").addClass("hidden") $scope.project.videoconferences = null $scope.project.videoconferences_salt = ""