Created
October 13, 2012 01:23
Detect hi-dpi screens using Javascript with a fallback to a matchMedia query on Firefox
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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