Skip to content

Instantly share code, notes, and snippets.

@SoulUED
SoulUED / RAMEvent
Last active August 29, 2015 14:13
/**
* Created by margintan on 15/1/15.
*/
(function (win, doc){
var _addEventListener = HTMLElement.prototype.addEventListener;
function fireEvent (_key, e) {
Object.keys(this[_key]).forEach(function (value) {
this[_key][value].call(this, e);
}, this);