From: Benoît Pin Date: Fri, 21 Jun 2013 15:37:43 +0000 (+0200) Subject: Retrait code debug. X-Git-Url: https://scm.cri.ensmp.fr/git/Portfolio.git/commitdiff_plain/03d1ae20f7ed8f0767e5c3c2e367a8dde257483d Retrait code debug. --- diff --git a/skins/fileupload.js b/skins/fileupload.js index 7229df9..905ccf7 100644 --- a/skins/fileupload.js +++ b/skins/fileupload.js @@ -50,8 +50,6 @@ DDFileUploader.prototype.handleFiles = function(files) { slide = this.createSlide(file); this.previewQueuePush(slide); this.uploadQueuePush(slide); - // this.previewUploadedImage(file); - // this.upload(file); } }; @@ -142,7 +140,6 @@ DDFileUploader.prototype.createSlide = function(file) { var size = this.thumbnailSize; var self = this; img.onload = function(evt) { - console.info('createSlide loaded.') if (img.width > img.height) { // landscape img.height = Math.round(size * img.height / img.width); img.width = size; @@ -165,7 +162,6 @@ DDFileUploader.prototype.createSlide = function(file) { slide.appendChild(a); slide.appendChild(progressBar); - // this.progressBar = progressBar; this.dropbox.appendChild(slide); return slide; @@ -184,10 +180,8 @@ DDFileUploader.prototype.previewUploadedImage = function(slide) { var self = this; reader.onload = function(evt) { - console.info('previewUploadedImage loaded.') slide.img.src = evt.target.result; - setTimeout(function(){self.previewQueueLoadNext();}, 1000); - // self.previewQueueLoadNext(); + setTimeout(function(){self.previewQueueLoadNext();}, 500); }; reader.readAsDataURL(slide.file); };