diff options
Diffstat (limited to 'usecaseui-monitor/src')
-rw-r--r-- | usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/controller/left-menuController.js | 3 | ||||
-rw-r--r-- | usecaseui-monitor/src/main/webapp/index.html | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/controller/left-menuController.js b/usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/controller/left-menuController.js index 07935836..abd58cef 100644 --- a/usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/controller/left-menuController.js +++ b/usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/controller/left-menuController.js @@ -15,6 +15,7 @@ */ app.controller('cmCtrl',['$scope',function ($scope) { $scope.routeData = [ + {name : 'Services' , url : 'app/uui/fusion/scripts/view-models/lifecyclemanagement.html' , nclass : 'fa fa-users'}, {name : 'Alarm' , url : 'app/uui/fusion/scripts/view-models/alarm.html' , nclass : 'fa fa-users'}, {name : 'Performance' , url : 'app/uui/fusion/scripts/view-models/performance.html', nclass : 'fa fa-cog'}, {name : 'About Performance Froms' , url : 'app/uui/fusion/scripts/view-models/performance-details.html', nclass : 'fa fa-cubes'}, @@ -26,4 +27,4 @@ app.controller('cmCtrl',['$scope',function ($scope) { $scope.isActiveTab = function (tabRoute) { return tabRoute == $scope.currentTab; } -}]);
\ No newline at end of file +}]); diff --git a/usecaseui-monitor/src/main/webapp/index.html b/usecaseui-monitor/src/main/webapp/index.html index cbfd8a8c..58f73005 100644 --- a/usecaseui-monitor/src/main/webapp/index.html +++ b/usecaseui-monitor/src/main/webapp/index.html @@ -47,6 +47,8 @@ <script src="app/uui/fusion/scripts/controller/left-menuController.js"></script> <script src="app/uui/fusion/scripts/controller/performance-detailsController.js"></script> <script src="app/uui/fusion/scripts/controller/performanceController.js"></script> + <script src="app/uui/fusion/scripts/controller/lcmController.js"></script> + <script src="app/uui/fusion/scripts/controller/ServiceTemplateService.js"></script> <title></title> </head> @@ -55,4 +57,4 @@ <ng-view></ng-view> </body> -</html>
\ No newline at end of file +</html> |