Skip to content

Instantly share code, notes, and snippets.

@ingozoell
Last active May 27, 2017 14:30
Show Gist options
  • Save ingozoell/256e3f32a3f767f827ff to your computer and use it in GitHub Desktop.
Save ingozoell/256e3f32a3f767f827ff to your computer and use it in GitHub Desktop.
Modernizr Retina/HiDPI detection
/* HIDPI Detection ----------------------------------------------- */
var hidpi = 'only screen and (-webkit-min-device-pixel-ratio: 2), only screen and ( min--moz-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx)';
if (Modernizr.mq(hidpi)) {
$('html').addClass('hidpi');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment