Minor fixes

This commit is contained in:
Masahiko AMANO
2021-12-10 00:45:29 +03:00
parent 0ed8d1482b
commit f63cb6cb59
3 changed files with 5 additions and 10 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ $('form').on('submit', function submit(e) {
dataType: 'json',
data: form,
success: function (resp) {
if (resp===null) {
if (resp === null) {
$('.process').css('display', 'none');
$('.error').css('display', 'block');
} else if (resp.status) {