From 03d1ae20f7ed8f0767e5c3c2e367a8dde257483d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Benoi=CC=82t=20Pin?= Date: Fri, 21 Jun 2013 17:37:43 +0200 Subject: [PATCH] Retrait code debug. --- skins/fileupload.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) 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); }; -- 2.20.1