Skip to content

Instantly share code, notes, and snippets.

@dannyfinks
Last active September 20, 2016 02:14
Show Gist options
  • Save dannyfinks/2e0eb8128073b1e13b019afdbabdf566 to your computer and use it in GitHub Desktop.
Save dannyfinks/2e0eb8128073b1e13b019afdbabdf566 to your computer and use it in GitHub Desktop.
var isMobile = false;
if (typeof window.orientation !== 'undefined') {
isMobile = true;
return isMobile;
}
if (!isMobile) {
document.getElementsByClassName("satisfactionicons")[0].style.display = 'none';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment