diff options
author | friendica <info@friendica.com> | 2011-11-12 14:25:04 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-11-12 14:25:04 -0800 |
commit | 240a3431cc524f349cbd997fded9f8bbb88696fa (patch) | |
tree | 7b50bc7fbc5f5e735517d9004b675355be32b91b | |
parent | ef79a7a4fc7bbde7a79b5f57c248dd60f7d3005a (diff) | |
download | volse-hubzilla-240a3431cc524f349cbd997fded9f8bbb88696fa.tar.gz volse-hubzilla-240a3431cc524f349cbd997fded9f8bbb88696fa.tar.bz2 volse-hubzilla-240a3431cc524f349cbd997fded9f8bbb88696fa.zip |
longer lifetime for system message popups so you have time to read them
-rw-r--r-- | js/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/main.js b/js/main.js index 0b856a3d8..74e58e0e3 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 }); }); }); |