Fix #10701, .preventDefault if an inline handler returns false.

Baby unicorns are slapped each time you use inline handlers, so do it sparingly.
This commit is contained in:
Dave Methvin
2011-11-07 11:07:36 -05:00
parent 1e677f30f6
commit 90c907e8b6
2 changed files with 15 additions and 2 deletions

View File

@@ -343,9 +343,10 @@ jQuery.event = {
if ( handle ) {
handle.apply( cur, data );
}
// Note that this is a bare JS function and not a jQuery handler
handle = ontype && cur[ ontype ];
if ( handle && jQuery.acceptData( cur ) ) {
handle.apply( cur, data );
if ( handle && jQuery.acceptData( cur ) && handle.apply( cur, data ) === false ) {
event.preventDefault();
}
if ( event.isPropagationStopped() ) {