Skip to content

Instantly share code, notes, and snippets.

@madrobby
Created March 5, 2013 14:01
Show Gist options
  • Save madrobby/5090497 to your computer and use it in GitHub Desktop.
Save madrobby/5090497 to your computer and use it in GitHub Desktop.
function isRetina(){
return (('devicePixelRatio' in window &&
devicePixelRatio > 1) ||
('matchMedia' in window &&
!matchMedia("(-moz-device-pixel-ratio:1.0)").matches))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment