Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix generic event handler and $events expando removal for IE
  • Loading branch information
brandonaaron committed Mar 5, 2007
1 parent fe1910d commit 2b9b3e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/event/event.js
Expand Up @@ -82,7 +82,7 @@ jQuery.event = {
for ( ret in events[type] ) break;
if ( !ret ) {
ret = element["on" + type] = null;
delete element.$events[type];
delete events[type];
}
}

Expand Down

0 comments on commit 2b9b3e9

Please sign in to comment.