Notes/static/js/utils.js

11 lines
263 B
JavaScript
Raw Normal View History

2017-06-11 16:04:07 -04:00
function message(str) {
$("#top-message").fadeIn(1500);
2017-06-11 16:04:07 -04:00
$("#top-message").html(str);
$("#top-message").fadeOut(1500);
2017-08-13 21:42:10 -04:00
}
function error(str) {
$("#error-message").show();
$("#error-message").html(str);
$("#error-message").fadeOut(10000);
2017-06-11 16:04:07 -04:00
}