Make sure that live handlers don't stop inline scripts from executing. Fixes #5835.

This commit is contained in:
Irae Brasil 2010-01-23 11:14:29 -05:00 committed by jeresig
parent 150e44cdda
commit b9ca157998

View file

@ -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);