Skip to content

Instantly share code, notes, and snippets.

@esmevane
Created March 1, 2013 04:23
Show Gist options
  • Save esmevane/5062468 to your computer and use it in GitHub Desktop.
Save esmevane/5062468 to your computer and use it in GitHub Desktop.
[ CoffeeScript ] iframe downloader hack
class Download
constructor: (@source) ->
@iframe = document.createElement 'iframe'
@iframe.style.display = 'none'
@iframe.src = @source
perform: -> document.body.appendChild @iframe
Download.Perform = (src) -> (new Download(src)).perform()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment