From 6438ab0da979307d8ea0ec5183d6a5e5a57bead8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ira=C3=AA?= Date: Mon, 18 Jan 2010 02:03:38 -0200 Subject: [PATCH] This fixes bug #5835, but I was unable to create a unit test (...) If you simulate the click via javascript the bug doen't happen. I'll explain more on the bug tracker. --- src/event.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/event.js b/src/event.js index a9b5a0cb63..25b39289fb 100644 --- a/src/event.js +++ b/src/event.js @@ -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, data, live = jQuery.extend({}, jQuery.data( this, "events" ).live);