trilium/static/js/utils.js

5 lines
125 B
JavaScript
Raw Normal View History

2017-06-12 04:04:07 +08:00
function message(str) {
$("#top-message").show();
$("#top-message").html(str);
$("#top-message").fadeOut(3000);
}