Skip to content

Instantly share code, notes, and snippets.

@jnsdbr
Created December 4, 2014 13:54
Show Gist options
  • Save jnsdbr/bacd42f3202a8ce31436 to your computer and use it in GitHub Desktop.
Save jnsdbr/bacd42f3202a8ce31436 to your computer and use it in GitHub Desktop.
checkRetina.js
function displayIsRetina()
{
return (window.devicePixelRatio || (window.matchMedia && window.matchMedia("(min-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 1.5),(-moz-min-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5)").matches? 2 : 1) || 1) > 1 ? true : false)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment