Added some semicolons

This commit is contained in:
Henry
2015-10-08 13:08:43 -07:00
parent b2cd66bd5d
commit e1e5919f68
2 changed files with 6 additions and 5 deletions

View File

@@ -1,9 +1,10 @@
/** /**
* Created by akhenry on 10/7/15. * Created by akhenry on 10/7/15.
*/ */
/*global define*/
define(function(){ define(function(){
return { return {
SUCCESS: 0, SUCCESS: 0,
ERROR: 1 ERROR: 1
} };
}) });

View File

@@ -103,7 +103,7 @@ define(
*/ */
NotificationService.prototype.getActiveNotification = function (){ NotificationService.prototype.getActiveNotification = function (){
return this.active.notification; return this.active.notification;
} };
/** /**
* A convenience method for success notifications. Notifications * A convenience method for success notifications. Notifications
@@ -114,7 +114,7 @@ define(
NotificationService.prototype.success = function (notification) { NotificationService.prototype.success = function (notification) {
notification.autoDismiss = notification.autoDismiss || true; notification.autoDismiss = notification.autoDismiss || true;
NotificationService.prototype.notify(notification); NotificationService.prototype.notify(notification);
} };
/** /**
* Notifies the user of an event. If there is a banner notification * Notifies the user of an event. If there is a banner notification
@@ -239,7 +239,7 @@ define(
this.notifications.splice(index, 1); this.notifications.splice(index, 1);
this.setActiveNotification(this.selectNextNotification()); this.setActiveNotification(this.selectNextNotification());
} }
} };
/** /**
* Depending on the severity of the notification will selectively * Depending on the severity of the notification will selectively