Bug 624468, remove old errors before displaying new ones in the file upload modal

This commit is contained in:
Matt Claypotch 2011-01-11 16:33:44 -08:00
Родитель e945c3be0f
Коммит 010537a2ba
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -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();
}