Skip to content

Instantly share code, notes, and snippets.

@AndreKelling
Created February 26, 2020 14:20
Show Gist options
  • Save AndreKelling/a50e8ea03b04b3e7d08136e865589c9f to your computer and use it in GitHub Desktop.
Save AndreKelling/a50e8ea03b04b3e7d08136e865589c9f to your computer and use it in GitHub Desktop.
isMouseUser
isMouseUser: function() {
// just presumpt that an IE11 user is a mouse user
var isIE11 = !!window.msCrypto;
return (matchMedia('(pointer:fine)').matches || isIE11);
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment