Skip to content

Instantly share code, notes, and snippets.

@grayghostvisuals
Created October 13, 2012 01:23
Detect hi-dpi screens using Javascript with a fallback to a matchMedia query on Firefox
// Ala Thomas Fuchs : retinafy
function retinaDevice() {
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