Skip to content

Commit

Permalink
Make sure that live handlers don't stop inline scripts from executing…
Browse files Browse the repository at this point in the history
…. Fixes #5835.
  • Loading branch information
irae authored and jeresig committed Jan 23, 2010
1 parent 150e44c commit b9ca157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/event.js
Expand Up @@ -860,7 +860,7 @@ jQuery.fn.extend({
});

function liveHandler( event ) {
var stop = true, elems = [], selectors = [], args = arguments,
var stop, elems = [], selectors = [], args = arguments,
related, match, fn, elem, j, i, l, data,
live = jQuery.extend({}, jQuery.data( this, "events" ).live);

Expand Down

0 comments on commit b9ca157

Please sign in to comment.