event-ready-base.js revision 88f849e5723c03ee1476b48a345c791034ab5681
/**
* DOM event listener abstraction layer
* @module event
*/
(function() {
D = C.doc,
if (!GLOBAL_ENV._ready) {
GLOBAL_ENV.windowLoaded = false;
var _ready = function(e) {
GLOBAL_ENV._ready();
};
GLOBAL_ENV._ready = function() {
if (!GLOBAL_ENV.DOMReady) {
GLOBAL_ENV.DOMReady=true;
if (D.removeEventListener) {
}
}
};
// create custom event
/////////////////////////////////////////////////////////////
// DOMReady
// Internet Explorer: use the readyState of a defered script.
// 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.
try {
// throws an error if doc is not ready
GLOBAL_ENV._dri = null;
_ready();
} catch (ex) {
}
}, POLL_INTERVAL);
// FireFox and Opera: These browsers provide a event for this
// moment. The latest WebKit releases now support this event.
} else {
}
/////////////////////////////////////////////////////////////
}
})();