Cleanup bubbling focus and blur events

- Use cached event instead of jQuery.event
- Do not cache event.special if you use it only once
This commit is contained in:
lrbabe 2009-11-06 19:59:45 +08:00 committed by John Resig
parent e03aee1aa6
commit 9a69b2cf08

View file

@ -575,7 +575,6 @@ jQuery.each({
blur: "focusout"
}, function( orig, fix ){
var event = jQuery.event,
special = event.special,
handle = event.handle;
function ieHandler() {
@ -583,18 +582,18 @@ jQuery.each({
return handle.apply(this, arguments);
}
special[orig] = {
event.special[orig] = {
setup:function() {
if ( this.addEventListener )
this.addEventListener( orig, handle, true );
else
jQuery.event.add( this, fix, ieHandler );
event.add( this, fix, ieHandler );
},
teardown:function() {
if ( this.removeEventListener )
this.removeEventListener( orig, handle, true );
else
jQuery.event.remove( this, fix, ieHandler );
event.remove( this, fix, ieHandler );
}
};
});