Aling project js with EE

This commit is contained in:
Borja Aparicio 2015-12-08 11:01:24 +01:00
parent 4e5897f51e
commit 01cafa1d90
1 changed files with 5 additions and 2 deletions

View File

@ -4,8 +4,11 @@ class @Project
$('.js-protocol-switch').click ->
return if $(@).hasClass('active')
# Toggle 'active' for both buttons
$('.js-protocol-switch').toggleClass('active')
# Remove the active class for all buttons (ssh, http, kerberos if shown)
$('.active').not($(@)).removeClass('active');
# Add the active class for the clicked button
$(@).toggleClass('active')
url = $(@).data('clone')