cleanup projects.coffee
This commit is contained in:
parent
e7c2ee57aa
commit
88d394d396
1 changed files with 12 additions and 13 deletions
|
@ -1,21 +1,20 @@
|
||||||
window.Projects = ->
|
window.Projects = ->
|
||||||
$("#project_name").live "change", ->
|
$('#project_name').on 'change', ->
|
||||||
slug = slugify($(this).val())
|
slug = slugify $(@).val()
|
||||||
$("#project_code").val(slug)
|
$('#project_code').val slug
|
||||||
$("#project_path").val(slug)
|
|
||||||
|
|
||||||
$(".new_project, .edit_project").live "ajax:before", ->
|
$('.new_project, .edit_project').on 'ajax:before', ->
|
||||||
$(".project_new_holder, .project_edit_holder").hide()
|
$('.project_new_holder, .project_edit_holder').hide()
|
||||||
$(".save-project-loader").show()
|
$('.save-project-loader').show()
|
||||||
|
|
||||||
$("form #project_default_branch").chosen()
|
$('form #project_default_branch').chosen()
|
||||||
disableButtonIfEmtpyField "#project_name", ".project-submit"
|
disableButtonIfEmtpyField '#project_name', '.project-submit'
|
||||||
|
|
||||||
# Git clone panel switcher
|
# Git clone panel switcher
|
||||||
$ ->
|
$ ->
|
||||||
scope = $('.project_clone_holder')
|
scope = $ '.project_clone_holder'
|
||||||
if scope.length > 0
|
if scope.length > 0
|
||||||
$('a, button', scope).click ->
|
$('a, button', scope).click ->
|
||||||
$('a, button', scope).removeClass('active')
|
$('a, button', scope).removeClass 'active'
|
||||||
$(this).addClass('active')
|
$(@).addClass 'active'
|
||||||
$('#project_clone', scope).val($(this).data('clone'))
|
$('#project_clone', scope).val $(@).data 'clone'
|
||||||
|
|
Loading…
Add table
Reference in a new issue