Merge pull request #171 from taigaio/bug/1646/fix-meetup-button

Change show/hide to add/removeClass in meetup button
stable
Jesús Espino 2014-11-20 09:43:52 +01:00
commit 32278f5bb0
1 changed files with 2 additions and 2 deletions

View File

@ -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 = ""