Skip to content

Instantly share code, notes, and snippets.

@ki11ua
Created January 31, 2018 07:15
Show Gist options
  • Save ki11ua/fea1ae5a86258c34e1e67c54a090ed39 to your computer and use it in GitHub Desktop.
Save ki11ua/fea1ae5a86258c34e1e67c54a090ed39 to your computer and use it in GitHub Desktop.
Test forf Touch Device
function isTouchDevice(){
return true == ("ontouchstart" in window || window.DocumentTouch && document instanceof DocumentTouch);
}
if(!isTouchDevice() && window.outerWidth > 1199){
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment