mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 18:08:13 +08:00
11 lines
No EOL
263 B
JavaScript
11 lines
No EOL
263 B
JavaScript
function message(str) {
|
|
$("#top-message").fadeIn(1500);
|
|
$("#top-message").html(str);
|
|
$("#top-message").fadeOut(1500);
|
|
}
|
|
|
|
function error(str) {
|
|
$("#error-message").show();
|
|
$("#error-message").html(str);
|
|
$("#error-message").fadeOut(10000);
|
|
} |