Skip to content

Instantly share code, notes, and snippets.

@Jikizuari
Created December 15, 2015 16:22
Show Gist options
  • Save Jikizuari/58e1e0b2a1580bc8d1ea to your computer and use it in GitHub Desktop.
Save Jikizuari/58e1e0b2a1580bc8d1ea to your computer and use it in GitHub Desktop.
Detect Retina display in Javascript
(function(){
if( document.cookie.indexOf('device_pixel_ratio') == -1
&& 'devicePixelRatio' in window
&& window.devicePixelRatio > 1 ){
document.cookie = 'device_pixel_ratio=' + window.devicePixelRatio + '; path=/';
document.cookie = 'retina=1; path=/';
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment