numerous updates

This commit is contained in:
Ross
2022-05-20 20:26:02 +01:00
parent 0373b22e78
commit 77ccdbc92a
246 changed files with 22615 additions and 2409 deletions
+5 -2
View File
@@ -130,8 +130,11 @@ djQuery(function ($) {
event.preventDefault();
});
},
error: function (file, response) {
showError(file.name + ': ' + response.error);
error: function (file, msg, response) {
if (response && response.error) {
msg += ' ; ' + response.error;
}
showError(file.name + ': ' + msg);
this.removeAllFiles(true);
},
reset: function () {