mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-28 10:32:27 +08:00
5 lines
125 B
JavaScript
5 lines
125 B
JavaScript
![]() |
function message(str) {
|
||
|
$("#top-message").show();
|
||
|
$("#top-message").html(str);
|
||
|
$("#top-message").fadeOut(3000);
|
||
|
}
|