Honor stopImmediatePropagation for live/delegate event handlers. Fixes #7217.

This commit is contained in:
dmethvin 2010-10-23 14:36:24 -04:00 committed by John Resig
parent ee845c4975
commit 974b5aeab7
2 changed files with 33 additions and 0 deletions

View file

@ -1132,6 +1132,9 @@ function liveHandler( event ) {
if ( ret === false ) {
stop = false;
}
if ( event.isImmediatePropagationStopped() ) {
break;
}
}
}