Welcome to mirror list, hosted at ThFree Co, Russian Federation.

projects.js.coffee « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1808f0578f668cd5f1440248bfe62fd47b665448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
window.Projects = ->
  $('.new_project, .edit_project').on 'ajax:before', ->
    $('.project_new_holder, .project_edit_holder').hide()
    $('.save-project-loader').show()

  $('form #project_default_branch').chosen()
  disableButtonIfEmptyField '#project_name', '.project-submit'

$ ->
  # 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()

class @GraphNav
  @init: ->
    $('.graph svg').css 'position', 'relative'
    $('body').bind 'keyup', (e) ->
      $('.graph svg').animate(left: '+=400') if e.keyCode is 37 # left
      $('.graph svg').animate(left: '-=400') if e.keyCode is 39 # right