From 7e2212c2de53ebdee0b4952f1ed46d2526ef9b6a Mon Sep 17 00:00:00 2001 From: neingeist Date: Mon, 12 Nov 2018 08:23:54 +0100 Subject: [PATCH] fade out flashed messages --- templates/download.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/download.html b/templates/download.html index c3d5d92..273096c 100644 --- a/templates/download.html +++ b/templates/download.html @@ -34,6 +34,9 @@ format:'YYYY-MM-DD HH:mm', sideBySide: true }); + $(".alert").delay(4000).fadeOut(500, function() { + $(this).alert('close'); + }); }); {% endblock %}