From f7e79f48467bcb78feed778c5c4b68828fbb92ab Mon Sep 17 00:00:00 2001 From: quenenni Date: Thu, 4 Apr 2013 23:07:13 +0200 Subject: [PATCH] Back before all the tests --- static/js/ep_email.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/static/js/ep_email.js b/static/js/ep_email.js index 801af4d..4be591a 100644 --- a/static/js/ep_email.js +++ b/static/js/ep_email.js @@ -117,13 +117,11 @@ exports.handleClientMessage_emailNotificationGetUserInfo = function (hook, conte exports.handleClientMessage_emailNotificationMissingParams = function (hook, context) { // Settings are missing in settings.json file if (context.payload == true) { - var title = window._('ep_email_notifications.titleGritterError'); - var msg = window._('ep_email_notifications.msgParamsMissing'); $.gritter.add({ // (string | mandatory) the heading of the notification - title: title, + title: window._('ep_email_notifications.titleGritterError'), // (string | mandatory) the text inside the notification - text: msg, + text: window._('ep_email_notifications.msgParamsMissing'), // (bool | optional) if you want it to fade out on its own or just sit there sticky: true });