Skip to content
Permalink
Browse files
Short-circuit jQuery.event.fix if it has already fixed the current ev…
…ent object.
  • Loading branch information
brandonaaron committed Dec 19, 2007
1 parent b32ec31 commit a7dfbb5
Showing 1 changed file with 7 additions and 0 deletions.
@@ -263,11 +263,18 @@ jQuery.event = {
},

fix: function(event) {
// Short-circuit if the event has already been fixed by jQuery.event.fix
if ( event[ expando ] )
return event;

// store a copy of the original event object
// and clone to set read-only properties
var originalEvent = event;
event = jQuery.extend({}, originalEvent);

// Mark the event as fixed by jQuery.event.fix
event[ expando ] = true;

// add preventDefault and stopPropagation since
// they will not work on the clone
event.preventDefault = function() {

0 comments on commit a7dfbb5

Please sign in to comment.