From 896dd8d2c710c33d49eb207f7238de5274e66939 Mon Sep 17 00:00:00 2001 From: Henry Date: Fri, 23 Oct 2015 16:30:51 -0700 Subject: [PATCH] Fixed jslint errors --- .../notification/src/NotificationService.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/platform/commonUI/notification/src/NotificationService.js b/platform/commonUI/notification/src/NotificationService.js index cff2d57d7a..0e2be08626 100644 --- a/platform/commonUI/notification/src/NotificationService.js +++ b/platform/commonUI/notification/src/NotificationService.js @@ -158,7 +158,7 @@ define( service.setActiveNotification(service.selectNextNotification()); }, service.MINIMIZE_TIMEOUT); } - }; + } /* * Completely removes a notification. This will dismiss it from the @@ -189,7 +189,7 @@ define( service.notifications.splice(index, 1); } service.setActiveNotification(service.selectNextNotification()); - }; + } /* * Depending on the severity of the notification will selectively @@ -201,7 +201,7 @@ define( //kind of messages should or should not be in the minimized //notifications list notification.minimize(); - }; + } /** * Returns the notification that is currently visible in the banner area @@ -249,15 +249,15 @@ define( notification = { model: notificationModel, minimize: function() { - minimize(self, notification) + minimize(self, notification); }, dismiss: function(){ - dismiss(self, notification) + dismiss(self, notification); }, dismissOrMinimize: function(){ - dismissOrMinimize(notification) + dismissOrMinimize(notification); } - }, + }; notificationModel.severity = notificationModel.severity || "info"; if (notificationModel.autoDismiss === true){