From: Benoît Pin Date: Fri, 21 Jun 2013 09:03:12 +0000 (+0200) Subject: Ménage. jslint ok. X-Git-Url: https://scm.cri.ensmp.fr/git/Portfolio.git/commitdiff_plain/e25cce0c923cea149eb953855dc782d10a3bcaba Ménage. jslint ok. --- diff --git a/skins/fileupload.js b/skins/fileupload.js index 42616a9..6ee52d5 100644 --- a/skins/fileupload.js +++ b/skins/fileupload.js @@ -89,7 +89,7 @@ DDFileUploader.prototype.updateProgressBar = function(progress) { var size = this.progressBarMaxSize * progress; size = Math.round(size); this.progressBar.style.width = size + 'px'; -} +}; DDFileUploader.prototype.upload = function(file) { @@ -102,10 +102,7 @@ DDFileUploader.prototype.upload = function(file) { req.open("PUT", this.uploadUrl + '/' + file.name); req.setRequestHeader("Content-Type", file.type); - addListener(reader, 'load', function(evt){req.sendAsBinary(evt.target.result);}) - // reader.onload = function(evt) { - // req.sendAsBinary(evt.target.result); - // }; + addListener(reader, 'load', function(evt){req.sendAsBinary(evt.target.result);}); reader.readAsBinaryString(file); };