lib/modjs-architecture/extensions/events.js in modjs-architecture-0.3.5 vs lib/modjs-architecture/extensions/events.js in modjs-architecture-0.4.0
- old
+ new
@@ -1,4 +1,8 @@
+//## Events
+
+// Standardizes events accross all browsers and adds W3C events if not present.
+// Taken directly form [Mozilla Docs](https://developer.mozilla.org/en/DOM/element.removeEventListener)
if (!Element.prototype.addEventListener) {
var oListeners = {};
function runListeners(oEvent) {
if (!oEvent) {
\ No newline at end of file