Skip to content

Instantly share code, notes, and snippets.

@Snakeyyy
Last active August 29, 2015 14:11
Show Gist options
  • Save Snakeyyy/ee448e9959ddf18b5798 to your computer and use it in GitHub Desktop.
Save Snakeyyy/ee448e9959ddf18b5798 to your computer and use it in GitHub Desktop.
@responsiveImageUrl = (image_path) ->
if window.devicePixelRatio > 1
isRetina = true
else
isRetina = false
width = $(window).width()
height = $(window).height()
url = '/rimage/?image_path=' + image_path + '&width=' + width + '&height=' + height
if isRetina
url += '&is_retina=' + isRetina
return url
url = responsiveImageUrl('STATIC_URL+'img/img1.png')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment