event-base-ie.js revision 011173392d3a1a59092095d5a24857134cb16f93
(function() {
var stateChangeListener,
EVENT_NAME = 'onreadystatechange',
if (!GLOBAL_ENV._ieready) {
GLOBAL_ENV._ieready = function() {
GLOBAL_ENV._ready();
};
// Internet Explorer: use the doScroll() method on the root element.
// This isolates what appears to be a safe moment to manipulate the
// DOM prior to when the document's readyState suggests it is safe to do so.
stateChangeListener = function() {
}
};
} else {
try {
GLOBAL_ENV._dri = null;
} catch (domNotReady) { }
}, pollInterval);
}
}
})();
/*
* Custom event engine, DOM event listener abstraction layer, synthetic DOM
* events.
* @module event
* @submodule event-base
*/
var IEEventFacade = function() {
// IEEventFacade.superclass.constructor.apply(this, arguments);
};
init: function() {
var e = this._event,
x, y, d, b, de, t;
if (('clientX' in e) && (!x) && (0 !== x)) {
x = e.clientX;
y = e.clientY;
b = d.body;
de = d.documentElement;
this.pageX = x;
this.pageY = y;
}
if (e.type == "mouseout") {
t = e.toElement;
} else if (e.type == "mouseover") {
t = e.fromElement;
}
this.relatedTarget = resolve(t);
},
stopPropagation: function() {
var e = this._event;
e.cancelBubble = true;
this.stopped = 1;
},
stopImmediatePropagation: function() {
this.stopPropagation();
this.stopped = 2;
},
preventDefault: function(returnValue) {
this.prevented = 1;
}
});
}, '@VERSION@' );