Bug 624468, remove old errors before displaying new ones in the file upload modal
This commit is contained in:
Родитель
e945c3be0f
Коммит
010537a2ba
|
@ -81,6 +81,7 @@ $(document).ready(function() {
|
|||
},
|
||||
error: function(xhr) {
|
||||
var errors = $.parseJSON(xhr.responseText);
|
||||
$("#upload-file").find(".errorlist").remove();
|
||||
$("#upload-file").find(".upload-status").before(generateErrorList(errors));
|
||||
$modal.setPos();
|
||||
}
|
||||
|
@ -772,6 +773,7 @@ function initEditVersions() {
|
|||
},
|
||||
error: function(xhr) {
|
||||
var errors = $.parseJSON(xhr.responseText);
|
||||
$("#upload-file").find(".errorlist").remove();
|
||||
$("#upload-file").find(".upload-status").before(generateErrorList(errors));
|
||||
$modal.setPos();
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче