Skip to content

Instantly share code, notes, and snippets.

@gnysek
Created May 5, 2016 14:24
Show Gist options
  • Save gnysek/fffe8935173394bceb025b9772e6dfc2 to your computer and use it in GitHub Desktop.
Save gnysek/fffe8935173394bceb025b9772e6dfc2 to your computer and use it in GitHub Desktop.
//override image class in JS
(function () {
var OriginalImage = window.Image;
window.Image = function (width, height) {
console.log('New image');
return new OriginalImage(width, height);
}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment