Skip to content

Instantly share code, notes, and snippets.

@brunorios1
Last active February 8, 2017 16:49
Show Gist options
  • Select an option

  • Save brunorios1/dd78c1e17cd420785e8e to your computer and use it in GitHub Desktop.

Select an option

Save brunorios1/dd78c1e17cd420785e8e to your computer and use it in GitHub Desktop.
[js] check if Modernizr is loaded, detect a feature and run code
if (typeof Modernizr == 'object') {
if (!Modernizr.touch) {
console.log('Touch device');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment