From: Benoît Pin <pin@cri.ensmp.fr>
Date: Fri, 21 Jun 2013 09:03:12 +0000 (+0200)
Subject: Ménage. jslint ok.
X-Git-Url: https://scm.cri.minesparis.psl.eu/git/Plinn.git/commitdiff_plain/3c9883c2a062873c01d91e33b80facbf4ee9987f?ds=inline

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);
 };