From: friendica Date: Sat, 12 Nov 2011 22:25:04 +0000 (-0800) Subject: longer lifetime for system message popups so you have time to read them X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=240a3431cc524f349cbd997fded9f8bbb88696fa;p=friendica.git longer lifetime for system message popups so you have time to read them --- diff --git a/js/main.js b/js/main.js index 0b856a3d83..74e58e0e34 100644 --- a/js/main.js +++ b/js/main.js @@ -133,7 +133,7 @@ }); eSysmsg.children("info").each(function(){ text = $(this).text(); - $.jGrowl(text, { sticky: false, theme: 'info' }); + $.jGrowl(text, { sticky: false, theme: 'info', life: 10000 }); }); });