Skip to content

Instantly share code, notes, and snippets.

@AdrienGiboire
Created May 21, 2014 16:57
Show Gist options
  • Save AdrienGiboire/853691519c2a80fc8597 to your computer and use it in GitHub Desktop.
Save AdrienGiboire/853691519c2a80fc8597 to your computer and use it in GitHub Desktop.
wtf.js
if (
(function(){
var el = document.createElement('div'),
bs = 'backgroundSize',
ubs = bs.charAt(0).toUpperCase() + bs.substr(1),
props = [bs, 'Webkit' + ubs, 'Moz' + ubs, 'O' + ubs];
for ( var i in props ) {
if ( el.style[props[i]] !== undefined ) {
return true;
}
}
return false;
}())
) {
return;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment