projects
/
Plinn.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
18ed826
)
Retrait code debug.
author
Benoît Pin
<pin@cri.ensmp.fr>
Fri, 21 Jun 2013 15:37:43 +0000
(17:37 +0200)
committer
Benoît Pin
<pin@cri.ensmp.fr>
Wed, 14 Aug 2013 10:33:10 +0000
(12:33 +0200)
skins/fileupload.js
patch
|
blob
|
history
diff --git
a/skins/fileupload.js
b/skins/fileupload.js
index
7229df9
..
905ccf7
100644
(file)
--- 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);
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) {
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;
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);
slide.appendChild(a);
slide.appendChild(progressBar);
- // this.progressBar = progressBar;
this.dropbox.appendChild(slide);
return slide;
this.dropbox.appendChild(slide);
return slide;
@@
-184,10
+180,8
@@
DDFileUploader.prototype.previewUploadedImage = function(slide) {
var self = this;
reader.onload = function(evt) {
var self = this;
reader.onload = function(evt) {
- console.info('previewUploadedImage loaded.')
slide.img.src = evt.target.result;
slide.img.src = evt.target.result;
- setTimeout(function(){self.previewQueueLoadNext();}, 1000);
- // self.previewQueueLoadNext();
+ setTimeout(function(){self.previewQueueLoadNext();}, 500);
};
reader.readAsDataURL(slide.file);
};
};
reader.readAsDataURL(slide.file);
};