Changed the window.location hack to be more specific (and documented).

This commit is contained in:
John Resig 2006-06-16 00:18:15 +00:00
parent d9b1d3436a
commit 9e27d8d1b4

7
jquery/jquery.js vendored
View file

@ -778,7 +778,12 @@ $.event = {};
// Bind an event to an element
// Original by Dean Edwards
$.event.add = function(element, type, handler) {
if ( element.location ) { element = window; } // Ughhhhh....
// For whatever reason, IE has trouble passing the window object
// around, causing it to be cloned in the process
if ( $.browser == "msie" && typeof element.setInterval != "undefined" ) {
element = window;
}
if (!handler.$$guid) { handler.$$guid = $.event.add.guid++; }
if (!element.events) { element.events = {}; }
var handlers = element.events[type];