summaryrefslogtreecommitdiff
path: root/www/js/jingles.js
diff options
context:
space:
mode:
authorPeter Grassberger <petertheone@gmail.com>2015-12-16 17:15:54 (GMT)
committerPeter Grassberger <petertheone@gmail.com>2015-12-16 17:15:54 (GMT)
commit5830de2afde5d6fa059ed82f35b88b4fe785f1ad (patch)
treee41db09b51056dc562dd9a307b3a68e26eeb1442 /www/js/jingles.js
parentaf53fbda45a1d75344ded495cc56c7f37a3460d4 (diff)
jingles: prepare for multiple uploads
Diffstat (limited to 'www/js/jingles.js')
-rw-r--r--www/js/jingles.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/www/js/jingles.js b/www/js/jingles.js
index 496b7b3..ca52269 100644
--- a/www/js/jingles.js
+++ b/www/js/jingles.js
@@ -396,7 +396,10 @@ Importer.prototype.importCartConfirm = function(dz, group) {
dz.on('error', function(file, msg, xhr) {
self.importFileUploadError(this, file, msg, xhr);
});
- this.importAddCut(dz, group, files[0])
+ /*$(files).each(function(index, file) {
+ self.importAddCut(dz, group, file);
+ });*/
+ self.importAddCut(dz, group, files[0]);
};
Importer.prototype.uploadProgress = function(file) {