various small usability improvements

This commit is contained in:
azivner
2017-08-13 21:42:10 -04:00
parent 191f70477c
commit 6fe81cd93a
7 changed files with 29 additions and 4 deletions

View File

@@ -2,4 +2,10 @@ function message(str) {
$("#top-message").show();
$("#top-message").html(str);
$("#top-message").fadeOut(3000);
}
function error(str) {
$("#error-message").show();
$("#error-message").html(str);
$("#error-message").fadeOut(10000);
}