From 15d95a3647ce63d4b9436e25741718f91846a016 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Tue, 28 Dec 2021 18:20:15 -0500 Subject: [PATCH] Set Feedback Alerts to disappear after 4 seconds instead of 2 seconds --- js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/app.js b/js/app.js index 12ab8ae8..ece2b0b7 100644 --- a/js/app.js +++ b/js/app.js @@ -3,8 +3,8 @@ if(window.history.replaceState){ window.history.replaceState(null, null, window.location.href); } -// Slide alert up after 2 secs -$("#alert").fadeTo(2000, 500).slideUp(500, function(){ +// Slide alert up after 4 secs +$("#alert").fadeTo(4000, 500).slideUp(500, function(){ $("#alert").slideUp(500); });