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

confirm_danger_modal.js.coffee « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb99edbd09eb5e21fba32774401da7d739902a01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class @ConfirmDangerModal
  constructor: (form, text) ->
    @form = form
    $('.js-confirm-text').text(text || '')
    $('.js-confirm-danger-input').val('')
    $('#modal-confirm-danger').modal('show')
    project_path = $('.js-confirm-danger-match').text()
    submit = $('.js-confirm-danger-submit')
    submit.disable()

    $('.js-confirm-danger-input').on 'input', ->
      if rstrip($(@).val()) is project_path
        submit.enable()
      else
        submit.disable()

    $('.js-confirm-danger-submit').on 'click', =>
      @form.submit()