Fixed jshint errors

This commit is contained in:
Henry
2015-10-14 15:03:29 -07:00
parent 301b73c6c6
commit f08725b6a2
3 changed files with 9 additions and 8 deletions

View File

@ -31,7 +31,7 @@ define(
$scope.action = function (action, $event){
$event.stopPropagation();
return action();
}
};
$scope.dismiss = function(notification, $event) {
$event.stopPropagation();
notificationService.dismissOrMinimize(notification);
@ -40,10 +40,10 @@ define(
if (notification.severity > MessageSeverity.INFO){
notification.cancel = function(){
dialogService.dismiss();
}
};
dialogService.showBlockingMessage(notification);
}
}
};
}
return BannerController;
});