Skip to content

Instantly share code, notes, and snippets.

@revenkroz
Last active October 27, 2020 12:31
Show Gist options
  • Save revenkroz/197501ad93ec96003b02a23aff3d4199 to your computer and use it in GitHub Desktop.
Save revenkroz/197501ad93ec96003b02a23aff3d4199 to your computer and use it in GitHub Desktop.
var oldAddEventListener = EventTarget.prototype.addEventListener;
EventTarget.prototype.addEventListener = function(eventName, eventHandler)
{
oldAddEventListener.call(this, eventName, function(event) {
console.log(eventName);
eventHandler(event);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment