From 06d601a0ee2c66577aea06fd635c0371cb94d723 Mon Sep 17 00:00:00 2001 From: DL6ER Date: Sun, 22 Oct 2017 15:10:22 +0200 Subject: [PATCH] 3 seconds before starting auto-dismissal Signed-off-by: DL6ER --- scripts/pi-hole/js/settings.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/pi-hole/js/settings.js b/scripts/pi-hole/js/settings.js index a9c4706f..4eee5c20 100644 --- a/scripts/pi-hole/js/settings.js +++ b/scripts/pi-hole/js/settings.js @@ -206,10 +206,10 @@ $(document).ready(function(){ var alError = $("#alError"); if(alInfo.length) { - alInfo.delay(1000).fadeOut(2000, function() { alInfo.hide(); }); + alInfo.delay(3000).fadeOut(2000, function() { alInfo.hide(); }); } if(alError.length) { - alError.delay(1000).fadeOut(2000, function() { alError.hide(); }); + alError.delay(3000).fadeOut(2000, function() { alError.hide(); }); } });