From 1bcaf7bca3863b2a9aa2a2aacd864b3275300153 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Tue, 7 Jun 2016 09:47:29 -0400 Subject: [PATCH] up'd the timeout for both default alert toasters --- public/src/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/src/app.js b/public/src/app.js index 2f61be6994..93837d6e9a 100644 --- a/public/src/app.js +++ b/public/src/app.js @@ -117,7 +117,7 @@ app.cacheBuster = null; title: '[[global:alert.success]]', message: message, type: 'success', - timeout: timeout ? timeout : 2000 + timeout: timeout ? timeout : 5000 }); }; @@ -126,7 +126,7 @@ app.cacheBuster = null; title: '[[global:alert.error]]', message: message, type: 'danger', - timeout: timeout ? timeout : 5000 + timeout: timeout ? timeout : 10000 }); };