Skip to content

Commit

Permalink
Merge branch 'master' of github.com:jquery/jquery
Browse files Browse the repository at this point in the history
  • Loading branch information
jeresig committed Feb 27, 2010
2 parents a45372a + 7d5da0e commit 42568db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/event.js
Expand Up @@ -382,7 +382,8 @@ jQuery.event = {
namespace = new RegExp("(^|\\.)" + namespaces.slice(0).sort().join("\\.(?:.*\\.)?") + "(\\.|$)");
}

var events = jQuery.data(this, "events"), handlers = events[ event.type ];
events = jQuery.data(this, "events");
handlers = (events || {})[ event.type ];

if ( events && handlers ) {
// Clone the handlers to prevent manipulation
Expand Down

0 comments on commit 42568db

Please sign in to comment.