drafts: Fade the "Draft saved" a little more slowly.

300ms is a pretty short amount of time
This commit is contained in:
Steve Howell 2020-04-07 20:13:33 +00:00 committed by Tim Abbott
parent 13f86f35d9
commit b8ef841867
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ exports.restore_message = function (draft) {
function draft_notify() {
$(".alert-draft").css("display", "inline-block");
$(".alert-draft").delay(1000).fadeOut(300);
$(".alert-draft").delay(1000).fadeOut(500);
}
exports.update_draft = function () {