Skip to content

Instantly share code, notes, and snippets.

@danielwestendorf
Created December 5, 2014 22:43
Show Gist options
  • Select an option

  • Save danielwestendorf/9f7425d4918d83febb88 to your computer and use it in GitHub Desktop.

Select an option

Save danielwestendorf/9f7425d4918d83febb88 to your computer and use it in GitHub Desktop.
var magicLibrary = new MagicLibrary();
var images = document.querySelectorAll('img');
// All ye Old browsers Beware
images.forEach(function(img) {
var glorifiedDataURI = magicLibrary.glorify(img);
img.src = glorifiedDataURI;
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment