This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Script: Event.js | |
Contains the Browser native event enhancement, to make the event object completely crossbrowser. | |
License: | |
MIT-style license. | |
*/ | |
function Event(event){ | |
if ((event = event || window.event).event) event = event.event; |
NewerOlder