CC-4476: Make all green notification boxes fade out after 5 seconds
-fixed
This commit is contained in:
parent
be4e02cbf1
commit
7036036a86
|
@ -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){
|
||||
|
|
Loading…
Reference in New Issue