Commit 7a77dedc by Jeffrey Phillips

Fix module for notifications service

parent 80ee3ebc
......@@ -1389,7 +1389,7 @@ angular.module('openshiftCommonUI').factory('GuidedTourService', function() {
});
;'use strict';
angular.module('openshiftCommonServices').provider('NotificationsService', function() {
angular.module('openshiftCommonUI').provider('NotificationsService', function() {
this.dismissDelay = 8000;
this.autoDismissTypes = ['info', 'success'];
......
......@@ -4514,7 +4514,7 @@ angular.module('openshiftCommonUI').factory('GuidedTourService', function() {
});
;'use strict';
angular.module('openshiftCommonServices').provider('NotificationsService', function() {
angular.module('openshiftCommonUI').provider('NotificationsService', function() {
this.dismissDelay = 8000;
this.autoDismissTypes = ['info', 'success'];
......
......@@ -1974,7 +1974,7 @@ return {
startTour:startTour,
cancelTour:cancelTour
};
}), angular.module("openshiftCommonServices").provider("NotificationsService", function() {
}), angular.module("openshiftCommonUI").provider("NotificationsService", function() {
this.dismissDelay = 8e3, this.autoDismissTypes = [ "info", "success" ], this.$get = function() {
var notifications = [], dismissDelay = this.dismissDelay, autoDismissTypes = this.autoDismissTypes, notificationHiddenKey = function(notificationID, namespace) {
return namespace ? "hide/notification/" + namespace + "/" + notificationID :"hide/notification/" + notificationID;
......
'use strict';
angular.module('openshiftCommonServices').provider('NotificationsService', function() {
angular.module('openshiftCommonUI').provider('NotificationsService', function() {
this.dismissDelay = 8000;
this.autoDismissTypes = ['info', 'success'];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment