Skip to content

Instantly share code, notes, and snippets.

@thomaspuppe
thomaspuppe / gist:3163220
Created July 23, 2012 11:48 — forked from madrobby/gist:3161015
detect retina support
function isRetina(){
return (('devicePixelRatio' in window && devicePixelRatio > 1) ||
('matchMedia' in window && matchMedia("(-moz-device-pixel-ratio:1.0)").matches))
}