Skip to content

Instantly share code, notes, and snippets.

@simi
Created September 2, 2014 21:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simi/35c6ced86758ca850585 to your computer and use it in GitHub Desktop.
Save simi/35c6ced86758ca850585 to your computer and use it in GitHub Desktop.
// Android performance
var ua = navigator.userAgent.toLowerCase();
var isAndroid = ua.indexOf("android") > -1; //&& ua.indexOf("mobile");
if(isAndroid) {
document.write('<style>* { text-shadow: none !important; box-shadow: none !important; -moz-box-shadow: none !important; -webkit-box-shadow: none !important; }</style>');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment