summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2017-02-27 03:57:26 (GMT)
committerChristian Pointner <equinox@helsinki.at>2017-02-27 03:57:26 (GMT)
commitd94ed6d94676f259f4cda0f06cf27cc853a14bec (patch)
treea509aed133f910afb1c5bfc3bbd33d2fbc230b36
parent6a987e5abe5e0301c5c54b84ecfc401a7c2fe9a9 (diff)
stip off white spaces from external uris
-rw-r--r--www/js/importer.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/importer.js b/www/js/importer.js
index 3aad373..85d9323 100644
--- a/www/js/importer.js
+++ b/www/js/importer.js
@@ -281,7 +281,7 @@ Rdxport.Importer.prototype.openModal = function(group, groupView, cartNumber, us
}).removeAttr('disabled');
function handleSource() {
- var sourceUri = $('.modal-body #sourceUri', self.$el).val();
+ var sourceUri = $('.modal-body #sourceUri', self.$el).val().trim();
var upload = new Rdxport.Upload(sourceUri, group, groupView, cartNumber, useMetadata);
upload.import();
self.uploads.push(upload);