Extract ref switcher into a partial

Also moves onchange JS to projects.js.coffee
This commit is contained in:
Robert Speicher 2012-09-16 12:07:57 -04:00
parent 4247ccd340
commit 465e40d3a6
4 changed files with 12 additions and 11 deletions

View file

@ -10,11 +10,15 @@ window.Projects = ->
$('form #project_default_branch').chosen()
disableButtonIfEmptyField '#project_name', '.project-submit'
# Git clone panel switcher
$ ->
# Git clone panel switcher
scope = $ '.project_clone_holder'
if scope.length > 0
$('a, button', scope).click ->
$('a, button', scope).removeClass 'active'
$(@).addClass 'active'
$('#project_clone', scope).val $(@).data 'clone'
# Ref switcher
$('.project-refs-select').on 'change', ->
$(@).parents('form').submit()