#10984 closed bug (fixed)
Cannot off() custom events ($.event.special)
Reported by: | njam | Owned by: | dmethvin |
---|---|---|---|
Priority: | high | Milestone: | 1.7.2 |
Component: | event | Version: | 1.7.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Hi,
I'm trying to unbind a "custom event" ($event.special) with off(). This doesn't seem to work, if I supply the original callback in addition to the event-name:
$(".bar").off("clickFoo"); // works
$(".bar").off("clickFoo", fn); // doesn't work
Demo: http://jsfiddle.net/Y3jpM/2/
Is this a bug, or am I doing something wrong?
Sincerely
Change History (5)
comment:1 Changed 11 years ago by
comment:2 Changed 11 years ago by
Component: | unfiled → event |
---|---|
Milestone: | None → 1.7.2 |
Owner: | set to dmethvin |
Priority: | undecided → high |
Status: | new → assigned |
Verified, here's a simpler test case:
comment:3 Changed 11 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Fix #10984. Use origType when unbinding via the event object.
Changeset: c584ce4f562536a282c6ccfd78d5d12080850517
Note: See
TracTickets for help on using
tickets.
The demo was a bit flawed and not so understandable. This should be better: http://jsfiddle.net/Y3jpM/5/