Added transitions and severity classes

This commit is contained in:
Henry
2015-10-14 11:45:39 -07:00
parent 34ea3ad9bb
commit ee382be38d
8 changed files with 56 additions and 53 deletions

View File

@ -22,11 +22,12 @@
/*global define*/
define(
[],
function () {
['../../../notification/src/MessageSeverity'],
function (MessageSeverity) {
"use strict";
function BannerController($scope, notificationService, dialogService) {
$scope.active = notificationService.active;
$scope.MessageSeverity = MessageSeverity;
$scope.dismiss = function(notification) {
notificationService.dismissOrMinimize(notification);
};