diff options
author | Peter Grassberger <petertheone@gmail.com> | 2015-12-16 17:15:54 (GMT) |
---|---|---|
committer | Peter Grassberger <petertheone@gmail.com> | 2015-12-16 17:15:54 (GMT) |
commit | 5830de2afde5d6fa059ed82f35b88b4fe785f1ad (patch) | |
tree | e41db09b51056dc562dd9a307b3a68e26eeb1442 /www | |
parent | af53fbda45a1d75344ded495cc56c7f37a3460d4 (diff) |
jingles: prepare for multiple uploads
Diffstat (limited to 'www')
-rw-r--r-- | www/js/jingles.js | 5 |
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) { |