From: jeresig Date: Sat, 9 Oct 2010 22:16:08 +0000 (-0400) Subject: Fix the case where live change was breaking if a live click was bound ahead of time... X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=commitdiff_plain;h=79305ed14617488e60416227d7eee70e07fe0c3c Fix the case where live change was breaking if a live click was bound ahead of time. Very similar to #6359. Fixes #6505. --- diff --git a/src/event.js b/src/event.js index d62d229..c44d7d0 100644 --- a/src/event.js +++ b/src/event.js @@ -778,6 +778,7 @@ if ( !jQuery.support.changeBubbles ) { if ( data != null || val ) { e.type = "change"; + e.liveFired = undefined; return jQuery.event.trigger( e, arguments[1], elem ); } };