Skip to content

Commit 1587afb

Browse files
committedOct 12, 2015
Merge pull request #124 from erundle/release
Adding missing dist files for 2.3.2 fix. Notification service scope
2 parents 64ea2e5 + 1c561b9 commit 1587afb

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed
 

‎dist/angular-patternfly.js

+6
Original file line numberDiff line numberDiff line change
@@ -2692,10 +2692,16 @@ angular.module( 'patternfly.notification' ).directive('pfNotification', function
26922692
angular.module( 'patternfly.notification' ).directive('pfNotificationList', function () {
26932693
'use strict';
26942694

2695+
NotificationListController.$inject = ["$scope", "$rootScope"];
26952696
return {
26962697
restrict: 'E',
2698+
controller: NotificationListController,
26972699
templateUrl: 'notification/notification-list.html'
26982700
};
2701+
2702+
function NotificationListController ($scope, $rootScope) {
2703+
$scope.notifications = $rootScope.notifications;
2704+
}
26992705
});
27002706
;/**
27012707
* @ngdoc directive

‎dist/angular-patternfly.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.