summaryrefslogtreecommitdiff
path: root/www/js/jingles.js
diff options
context:
space:
mode:
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) {