mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
11 lines
257 B
JavaScript
11 lines
257 B
JavaScript
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);
|
|
} |