Skip to content

Instantly share code, notes, and snippets.

@DimitarChristoff
Created February 10, 2011 21:21
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DimitarChristoff/821370 to your computer and use it in GitHub Desktop.
Save DimitarChristoff/821370 to your computer and use it in GitHub Desktop.
Feature detect base64 support for images in mootools
(function() {
var callback = function() {
Browser.Features = Object.merge(Browser.Features, {
base64: this.width == 1 && this.height == 1
});
// console.log(Browser.Features.base64); // true || false
};
new Element("img", {
// 1x1 px gif to test with
src: "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==",
events: {
load: callback,
error: callback
}
});
})();
@DimitarChristoff
Copy link
Author

is it humanly possible to make more mistakes on a less-than-10 lines snippet? hopefully it's now done and dusted.

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