Skip to content

Instantly share code, notes, and snippets.

@cameroooon
Last active October 9, 2015 12:37
Show Gist options
  • Save cameroooon/3506348 to your computer and use it in GitHub Desktop.
Save cameroooon/3506348 to your computer and use it in GitHub Desktop.
CoffeeScript SVG to PNG Polyfill
# SVG polyfill (requires modernizr - http://modernizr.com)
unless Modernizr.svg
$('img[src *= ".svg"]').each( ->
nurl = $(this).attr('src').replace(/\.svg$/, '.png')
$(this).attr src: nurl
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment