420ba2119b
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
53 lines
1.6 KiB
CoffeeScript
53 lines
1.6 KiB
CoffeeScript
class Project
|
|
constructor: ->
|
|
$('.project-edit-container').on 'ajax:before', =>
|
|
$('.project-edit-container').hide()
|
|
$('.save-project-loader').show()
|
|
|
|
@initEvents()
|
|
|
|
|
|
initEvents: ->
|
|
disableButtonIfEmptyField '#project_name', '.project-submit'
|
|
|
|
$('#project_issues_enabled').change ->
|
|
if ($(this).is(':checked') == true)
|
|
$('#project_issues_tracker').removeAttr('disabled')
|
|
else
|
|
$('#project_issues_tracker').attr('disabled', 'disabled')
|
|
|
|
$('#project_issues_tracker').change()
|
|
|
|
$('#project_issues_tracker').change ->
|
|
if ($(this).val() == gon.default_issues_tracker || $(this).is(':disabled'))
|
|
$('#project_issues_tracker_id').attr('disabled', 'disabled')
|
|
else
|
|
$('#project_issues_tracker_id').removeAttr('disabled')
|
|
|
|
|
|
@Project = Project
|
|
|
|
$ ->
|
|
# Git clone panel switcher
|
|
scope = $ '.git-clone-holder'
|
|
if scope.length > 0
|
|
$('a, button', scope).click ->
|
|
$('a, button', scope).removeClass 'active'
|
|
$(@).addClass 'active'
|
|
$('#project_clone', scope).val $(@).data 'clone'
|
|
$(".clone").text("").append $(@).data 'clone'
|
|
|
|
# Ref switcher
|
|
$('.project-refs-select').on 'change', ->
|
|
$(@).parents('form').submit()
|
|
|
|
$('.hide-no-ssh-message').on 'click', (e) ->
|
|
path = '/'
|
|
$.cookie('hide_no_ssh_message', 'false', { path: path })
|
|
$(@).parents('.no-ssh-key-message').hide()
|
|
e.preventDefault()
|
|
|
|
$('.project-side .star').on 'ajax:success', (e, data, status, xhr) ->
|
|
$(@).toggleClass('on').find('.count').html(data.star_count)
|
|
.on 'ajax:error', (e, xhr, status, error) ->
|
|
new Flash('Star toggle failed. Try again later.', 'alert')
|