From 240a3431cc524f349cbd997fded9f8bbb88696fa Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 12 Nov 2011 14:25:04 -0800 Subject: [PATCH] longer lifetime for system message popups so you have time to read them --- js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }); }); });