Skip to content

Instantly share code, notes, and snippets.

@gavinblair
Last active December 10, 2015 13:58
Show Gist options
  • Save gavinblair/4444283 to your computer and use it in GitHub Desktop.
Save gavinblair/4444283 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
var retina = window.devicePixelRatio > 1 ? true : false;
if(retina) {
$("html").addClass("retina");
$('img').each(function(){
$(this).attr("src", $(this).attr("src").replace("/l/", "/h/"));
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment