Opened 11 years ago
Closed 11 years ago
#12203 closed bug (fixed)
.undelegate() with no arguments unbinds all handlers from the parent element
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | blocker | Milestone: | 1.8 |
Component: | event | Version: | 1.7.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
This used to work in 1.6. undelegate() has a zero-argument version that should just undelegate all handlers from the parent element. What this does now is undelegate all handlers AS WELL as all bound event handlers on the parent.
See the following jsFiddle for an example: http://jsfiddle.net/xWju3/
Clicking on the div should display "Parent Clicked", and clicking on the "Click Me" button should display "Child Clicked". If you then click on the "Undelegate Click" button, neither the "Click Me" button nor the parent div will register their clicks anymore.
Change History (2)
comment:1 Changed 11 years ago by
Component: | unfiled → event |
---|---|
Milestone: | None → 1.8 |
Priority: | undecided → blocker |
Status: | new → open |
comment:2 Changed 11 years ago by
Resolution: | → fixed |
---|---|
Status: | open → closed |
Fix #12203. .undelegate() should not remove direcly bound events.
Changeset: 1d8bf0a2b57fd429c600aab5b150b2a04b87e451
Yep, we'll get a fix in for this.