From 9cb12ef5329b3e2f93e21c2756b4bfa2319d93ee Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Sun, 14 Sep 2014 00:23:14 +0100 Subject: [PATCH] Increase notification appearance timeout to 5s from 2s --- client/js/shout.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/js/shout.js b/client/js/shout.js index a94a965..676820e 100644 --- a/client/js/shout.js +++ b/client/js/shout.js @@ -431,7 +431,7 @@ $(function() { // Close notification after 2s window.setTimeout(function() { n.close(); - }, 2 * 1000); + }, 5 * 1000); } } }