Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
9fd06180
Commit
9fd06180
authored
Dec 26, 2014
by
Marin Jankovski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update on the correct checkbox.
parent
16ebeede
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
15 deletions
+17
-15
app/assets/javascripts/protected_branches.js.coffee
app/assets/javascripts/protected_branches.js.coffee
+17
-15
No files found.
app/assets/javascripts/protected_branches.js.coffee
View file @
9fd06180
$
->
$
->
$
(
":checkbox"
).
change
->
$
(
":checkbox"
).
change
->
id
=
$
(
this
).
val
()
name
=
$
(
this
).
attr
(
"name"
)
checked
=
$
(
this
).
is
(
":checked"
)
if
name
==
"developers_can_push"
url
=
$
(
this
).
data
(
"url"
)
id
=
$
(
this
).
val
()
$
.
ajax
checked
=
$
(
this
).
is
(
":checked"
)
type
:
"PUT"
url
=
$
(
this
).
data
(
"url"
)
url
:
url
$
.
ajax
dataType
:
"json"
type
:
"PUT"
data
:
url
:
url
id
:
id
dataType
:
"json"
developers_can_push
:
checked
data
:
id
:
id
developers_can_push
:
checked
success
:
->
success
:
->
new
Flash
(
"Branch updated."
,
"notice"
)
new
Flash
(
"Branch updated."
,
"notice"
)
location
.
reload
true
location
.
reload
true
error
:
->
error
:
->
new
Flash
(
"Failed to update branch!"
,
"alert"
)
new
Flash
(
"Failed to update branch!"
,
"alert"
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment