danielm / uploader

A lightweight and very configurable jQuery plugin for file uploading using ajax(a sync); includes support for queues, progress tracking and drag and drop.
https://danielmg.org/demo/java-script/uploader
MIT License
1.17k stars 385 forks source link

in your README file has a error #23

Closed bengben closed 8 years ago

bengben commented 9 years ago

onUploadProgress:

onUploadProgress: function(id, percent){ console.log('Upload of #' + id ' is at %' + percent); // do something cool here! }

it's error

-------------------" + here " ----------------

onUploadProgress: function(id, percent){ console.log('Upload of #' + id + ' is at %' + percent); // do something cool here! }

reinierkors commented 9 years ago

Also at:

onFallbackMode: function(message){
  console.log('Upload plugin can't be initialized: ' + message);
}

should be

onFallbackMode: function(message){
 console.log('Upload plugin can\'t be initialized: ' + message);
}