From a68bb48eb2d552ae232436200256d25003e7a5e0 Mon Sep 17 00:00:00 2001 From: James Hsiao Date: Wed, 16 Apr 2014 09:58:13 -0400 Subject: [PATCH] Upped opacity on notifications --- public/js/services/notificationServices.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/services/notificationServices.js b/public/js/services/notificationServices.js index 0081b8a9a1..0ced1e61d5 100644 --- a/public/js/services/notificationServices.js +++ b/public/js/services/notificationServices.js @@ -8,7 +8,7 @@ angular.module("notificationServices", []) var notice = $.pnotify({ type: type || 'warning', //('info', 'text', 'warning', 'success', 'gp', 'xp', 'hp', 'lvl', 'death', 'mp', 'crit') text: html, - opacity: .75, + opacity: 1, addclass: 'alert-' + type, delay: 7000, hide: (type == 'error') ? false : true,