Skip to content

Instantly share code, notes, and snippets.

@droganov
droganov / html5uploader.coffee
Created August 10, 2012 19:33 — forked from melito/html5uploader.coffee
Coffee Script html5 uploader
class HTML5Uploader
constructor:(obj, options) ->
@method = options['method'] ||= "POST"
@url = options['url'] ||= "/"
@params = options['params']
@obj = $(obj)
@files = []
@alerted = false