trilium/static/js/utils.js
2017-08-13 21:42:10 -04:00

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);
}