projects
/
Plinn.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
7e1385a
)
Refactoring en cours.
author
Benoît Pin
<pin@cri.ensmp.fr>
Fri, 2 Aug 2013 15:05:17 +0000
(17:05 +0200)
committer
Benoît Pin
<pin@cri.ensmp.fr>
Wed, 14 Aug 2013 10:33:12 +0000
(12:33 +0200)
skins/fileupload.js
patch
|
blob
|
history
diff --git
a/skins/fileupload.js
b/skins/fileupload.js
index
4061a0c
..
497e30a
100644
(file)
--- a/
skins/fileupload.js
+++ b/
skins/fileupload.js
@@
-4,18
+4,10
@@
var DDFileUploaderBase;
(function(){
// nombre maximun d'image chargées en local
var MAX_PREVIEW = 2;
(function(){
// nombre maximun d'image chargées en local
var MAX_PREVIEW = 2;
-var isThumbnail = /.*\/getThumbnail$/;
DDFileUploaderBase = function(dropbox, uploadUrl) {
this.dropbox = dropbox;
DDFileUploaderBase = function(dropbox, uploadUrl) {
this.dropbox = dropbox;
- this.existingSlides = this.indexExistingSlides();
this.uploadUrl = uploadUrl;
this.uploadUrl = uploadUrl;
- this.slideSize = 222;
- this.progressBarMaxSize = 200; // pixels
- this.thumbnailSize = 180;
- this.previewQueue = [];
- this._previewQueueRunning = false;
- this.previewsLoaded = 0;
this.uploadQueue = [];
this._uploadQueueRunning = false;
var self = this;
this.uploadQueue = [];
this._uploadQueueRunning = false;
var self = this;
@@
-24,18
+16,6
@@
DDFileUploaderBase = function(dropbox, uploadUrl) {
addListener(dropbox, 'drop', function(evt){self.drop(evt);});
};
addListener(dropbox, 'drop', function(evt){self.drop(evt);});
};
-DDFileUploaderBase.prototype.indexExistingSlides = function() {
- var images = this.dropbox.getElementsByTagName('img');
- var i;
- var index = [];
- for (i=0 ; i < images.length ; i++) {
- if (isThumbnail.test(images[i].src)) {
- index[images[i].src] = images[i];
- }
- }
- return index;
-};
-
// Drag and drop
DDFileUploaderBase.prototype.dragenter = function(evt) {
disableDefault(evt);
// Drag and drop
DDFileUploaderBase.prototype.dragenter = function(evt) {
disableDefault(evt);