Fixed jslint issues

This commit is contained in:
Andrew Henry
2015-11-04 20:48:22 -08:00
parent b73f9fc19e
commit 863c3f1720
5 changed files with 33 additions and 35 deletions

View File

@@ -222,7 +222,7 @@ define(
* functions to dismiss or minimize
*/
NotificationService.prototype.info = function (model) {
var notificationModel = typeof model === "string" ? {title: model} : model
var notificationModel = typeof model === "string" ? {title: model} : model;
notificationModel.autoDismiss = notificationModel.autoDismiss || true;
notificationModel.severity = "info";
return this.notify(notificationModel);