From 7036036a866bfe2ba7e473f7b9b63590d11a9466 Mon Sep 17 00:00:00 2001 From: Martin Konecny Date: Tue, 18 Sep 2012 21:29:02 -0400 Subject: [PATCH] CC-4476: Make all green notification boxes fade out after 5 seconds -fixed --- airtime_mvc/public/js/airtime/common/common.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/airtime_mvc/public/js/airtime/common/common.js b/airtime_mvc/public/js/airtime/common/common.js index bd162f980..aa449dddf 100644 --- a/airtime_mvc/public/js/airtime/common/common.js +++ b/airtime_mvc/public/js/airtime/common/common.js @@ -5,6 +5,10 @@ $(document).ready(function() { afterDetachCSSClass: "floated-panel", savePanelSpace: true }); + + + //this statement tells the browser to fade out any success message after 5 seconds + setTimeout(function(){$(".success").fadeOut("slow", function(){$(this).empty()});}, 5000); }); function adjustDateToServerDate(date, serverTimezoneOffset){