Add missing space and extend error hiding timeout from 4 to 10 seconds.

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER
2020-11-09 21:21:30 +01:00
parent 4557846858
commit ad43e5a8dc
3 changed files with 5 additions and 5 deletions

View File

@@ -68,7 +68,7 @@ function add(domain, list) {
alFailure.fadeIn(1000);
setTimeout(function () {
alertModal.modal("hide");
}, 3000);
}, 10000);
} else {
// Success
alSuccess.children(alDomain).html(domain);
@@ -86,7 +86,7 @@ function add(domain, list) {
alFailure.fadeIn(1000);
setTimeout(function () {
alertModal.modal("hide");
}, 3000);
}, 10000);
}
});
});