update fileUploader to 9.21.0

This commit is contained in:
francois
2018-04-19 21:03:46 +02:00
parent 5a0734a357
commit 59a9e5b690
3 changed files with 67 additions and 42 deletions

View File

@@ -16,7 +16,8 @@ oSpot.pageInit = function(asHash)
done: function (e, data) {
var $Status = $('#status');
$.each(data.result.files, function(iKey, oFile) {
$Status.append($('<p>').text(oFile.name+" uploaded succesfully"));
var sMsg = ('error' in oFile)?oFile.error:(oFile.name+" uploaded succesfully");
$Status.append($('<p>').text(sMsg));
});
},
progressall: function (e, data) {