Clean up in jQuery.event.add for assigning a handler.guid

This commit is contained in:
Brandon Aaron 2007-05-23 13:51:04 +00:00
parent 970eb0f020
commit 7e03645a55

View file

@ -13,6 +13,10 @@ jQuery.event = {
if ( jQuery.browser.msie && element.setInterval != undefined )
element = window;
// Make sure that the function being executed has a unique ID
if ( !handler.guid )
handler.guid = this.guid++;
// if data is passed, bind to handler
if( data != undefined ) {
// Create temporary function pointer to original handler
@ -31,13 +35,6 @@ jQuery.event = {
handler.guid = fn.guid;
}
// Make sure that the function being executed has a unique ID
if ( !handler.guid ) {
handler.guid = this.guid++;
// Don't forget to set guid for the original handler function
if (fn) fn.guid = handler.guid;
}
// Init the element's event structure
if (!element.$events)
element.$events = {};