From 5830de2afde5d6fa059ed82f35b88b4fe785f1ad Mon Sep 17 00:00:00 2001
From: Peter Grassberger <petertheone@gmail.com>
Date: Wed, 16 Dec 2015 18:15:54 +0100
Subject: jingles: prepare for multiple uploads


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) {
-- 
cgit v0.10.2