Changed the window.location hack to be more specific (and documented).
This commit is contained in:
parent
d9b1d3436a
commit
9e27d8d1b4
7
jquery/jquery.js
vendored
7
jquery/jquery.js
vendored
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue