Skip to content

Instantly share code, notes, and snippets.

@ajaswa
Created December 17, 2010 18:08
Show Gist options
  • Select an option

  • Save ajaswa/745404 to your computer and use it in GitHub Desktop.

Select an option

Save ajaswa/745404 to your computer and use it in GitHub Desktop.
moderizr extensions
Modernizr.dataUri = function() {
var data = new Image();
data.onload = data.onerror = function(){
return this.width === 1 || this.height === 1;
};
data.src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==";
};
@ajaswa
Copy link
Author

ajaswa commented Dec 17, 2010

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment