slide = this.createSlide(file);
this.previewQueuePush(slide);
this.uploadQueuePush(slide);
- // this.previewUploadedImage(file);
- // this.upload(file);
}
};
DDFileUploader.prototype.previewQueuePush = function(slide) {
this.previewQueue.push(slide);
- if (!this._previewQueueRunning)
+ if (!this._previewQueueRunning) {
this.startPreviewQueue();
+ }
};
DDFileUploader.prototype.startPreviewQueue = function() {
DDFileUploader.prototype.previewQueueLoadNext = function() {
var slide = this.previewQueue.shift();
- if (slide)
+ if (slide) {
this.previewUploadedImage(slide);
- else
+ }
+ else {
this._previewQueueRunning = false;
+ }
};
DDFileUploader.prototype.uploadQueuePush = function(slide) {
this.uploadQueue.push(slide);
- if (!this._uploadQueueRunning)
+ if (!this._uploadQueueRunning) {
this.startUploadQueue();
+ }
};
DDFileUploader.prototype.startUploadQueue = function() {
DDFileUploader.prototype.uploadQueueLoadNext = function() {
var slide = this.uploadQueue.shift();
- if (slide)
+ if (slide) {
this.upload(slide);
- else
+ }
+ else {
this._uploadQueueRunning = false;
+ }
};
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;
slide.appendChild(a);
slide.appendChild(progressBar);
- // this.progressBar = progressBar;
this.dropbox.appendChild(slide);
return 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);
};