UNPKG

favoritos

Version:

Favoritos is a JavaScript plugin that adds some HTML5 canvas magic to your favicon. With just a wee bit of code, we can make some really cool effects.

29 lines (26 loc) 468 B
/** * * favoritos * * @version 1.1.0 * @author Alexey Istomin * @email: webistomin@gmail.com * @license: MIT * **/ var loadImage = function loadImage(src, callback) { var img = new Image(); img.crossOrigin = 'anonymous'; img.addEventListener('load', function () { return callback(img); }, { once: true }); img.addEventListener('error', function () { return callback(img); }, { once: true }); img.src = src; }; export { loadImage };