Improve protected branches page UX

This commit is contained in:
Dmitriy Zaporozhets 2015-03-25 22:45:58 -07:00
parent 429a43ca6a
commit 3a11165648
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
$ ->
$(".protected-branches-list :checkbox").change ->
$(".protected-branches-list :checkbox").change (e) ->
name = $(this).attr("name")
if name == "developers_can_push"
id = $(this).val()
@ -14,8 +14,8 @@ $ ->
developers_can_push: checked
success: ->
new Flash("Branch updated.", "notice")
location.reload true
row = $(e.target)
row.closest('tr').effect('highlight')
error: ->
new Flash("Failed to update branch!", "alert")