mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 06:03:20 +00:00
Small fix in the JS
This commit is contained in:
parent
e66d9bd472
commit
9bccc6a5d1
@ -72,7 +72,7 @@ $("form").submit(function (event) {
|
|||||||
this.insertBefore(errorlist, this.firstElementChild);
|
this.insertBefore(errorlist, this.firstElementChild);
|
||||||
}
|
}
|
||||||
|
|
||||||
while(errorlist.childElementCount > 0)
|
while(errorlist.childElementCount > 0)
|
||||||
errorlist.removeChild(errorlist.firstElementChild);
|
errorlist.removeChild(errorlist.firstElementChild);
|
||||||
|
|
||||||
var progress;
|
var progress;
|
||||||
@ -96,7 +96,7 @@ $("form").submit(function (event) {
|
|||||||
processData: false,
|
processData: false,
|
||||||
contentType: false,
|
contentType: false,
|
||||||
success: onSuccess
|
success: onSuccess
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
var images = formData.getAll('images');
|
var images = formData.getAll('images');
|
||||||
@ -141,7 +141,10 @@ $("form").submit(function (event) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function onSuccess(image, data, status, jqXHR) {
|
function onSuccess(image, data, status, jqXHR) {
|
||||||
var errors = Array.from($(data).find('.errorlist.nonfield')[0].children);
|
if ($(data).find('.errorlist.nonfield')[0])
|
||||||
|
var errors = Array.from($(data).find('.errorlist.nonfield')[0].children);
|
||||||
|
else
|
||||||
|
var errors = []
|
||||||
while(errors.length > 0)
|
while(errors.length > 0)
|
||||||
errorlist.appendChild(errors.shift());
|
errorlist.appendChild(errors.shift());
|
||||||
progress.value = ++completeCount / imagesCount;
|
progress.value = ++completeCount / imagesCount;
|
||||||
|
Loading…
Reference in New Issue
Block a user