This commit is contained in:
pushuo 2022-09-06 18:58:34 +08:00
parent 9cd7ea8ac7
commit bb86dd1bd1
1 changed files with 4 additions and 1 deletions

View File

@ -206,7 +206,10 @@
url: 'environment/validate_db',
type: 'POST',
data: $('form :input[name!="admin_email"][name!="admin_password"]').serialize(),
beforeSend: function () {$('.database-loading').removeClass('d-none')},
beforeSend: function () {
$('.database-loading').removeClass('d-none')
$('.text-success').addClass('d-none')
},
complete: function() {
$('.database-loading').addClass('d-none');
},