Simplify the check for isDefaultPrevented.

This commit is contained in:
Dave Methvin 2010-12-24 09:53:39 -05:00
parent 0b6afcedd2
commit c9e8a95709

View file

@ -602,10 +602,8 @@ jQuery.Event = function( src ) {
this.type = src.type; this.type = src.type;
// Events bubbling up the document may have been marked as prevented // Events bubbling up the document may have been marked as prevented
// by a handler lower down the tree; reflect the correct value. // by a handler lower down the tree; reflect the correct value.
this.isDefaultPrevented = this.isDefaultPrevented = (src.defaultPrevented || src.returnValue === false ||
(src.defaultPrevented===true ? true : src.getPreventDefault && src.getPreventDefault()) ? returnTrue : returnFalse;
src.getPreventDefault ? src.getPreventDefault() :
src.returnValue===false) ? returnTrue : returnFalse;
// Event type // Event type
} else { } else {
this.type = src; this.type = src;