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
Léo-Paul Géneau
gitlab-ce
Commits
72d87d6c
Commit
72d87d6c
authored
Jun 13, 2016
by
Alfredo Sumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Turn off handlers before binding events
parent
400b4159
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
app/assets/javascripts/issuable.js.coffee
app/assets/javascripts/issuable.js.coffee
+2
-2
No files found.
app/assets/javascripts/issuable.js.coffee
View file @
72d87d6c
...
...
@@ -99,11 +99,11 @@ issuable_created = false
$
(
'#filter_issue_search'
).
val
(
$
(
'#issue_search'
).
val
())
initChecks
:
->
$
(
'.check_all_issues'
).
on
'click'
,
->
$
(
'.check_all_issues'
).
o
ff
(
'click'
).
o
n
'click'
,
->
$
(
'.selected_issue'
).
prop
(
'checked'
,
@
checked
)
Issuable
.
checkChanged
()
$
(
'.selected_issue'
).
on
'change'
,
Issuable
.
checkChanged
$
(
'.selected_issue'
).
o
ff
(
'change'
).
o
n
'change'
,
Issuable
.
checkChanged
updateStateFilters
:
->
stateFilters
=
$
(
'.issues-state-filters, .dropdown-menu-sort'
)
...
...
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