Side navigation
#4241 closed bug (fixed)
Opened February 25, 2009 04:37AM UTC
Closed April 29, 2009 09:47PM UTC
Namespaced events cause memory leaks
| Reported by: | scottgonzalez | Owned by: | brandon |
|---|---|---|---|
| Priority: | critical | Milestone: | 1.4 |
| Component: | event | Version: | 1.3.2 |
| Keywords: | Cc: | ||
| Blocked by: | Blocking: |
Description
$('<div></div>').bind('click.foo', function() {});
leaks memory in IE (tested using Drip).
$('<div></div>').bind('click', function() {});
works fine.
Attachments (0)
Change History (2)
Changed April 29, 2009 09:39PM UTC by comment:1
| owner: | aflesler → brandon |
|---|
Changed April 29, 2009 09:47PM UTC by comment:2
| resolution: | → fixed |
|---|---|
| status: | new → closed |
I had a really difficult time getting a reliable test case to verify this actually solves the memory leak. r6321 appears to have fixed this issue.