blob: e6ecad0062508ae7976d8297f2b2e1aea57bcd90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
'use strict';
/**
* @ngdoc function
* @name opnfvdashBoardAngularApp.controller:AdminController
* @description
* # TableController
* Controller of the opnfvdashBoardAngularApp
*/
angular.module('opnfvApp')
.controller('AdminController', ['$scope', '$state', '$stateParams', 'TableFactory', function($scope, $state, $stateParams, TableFactory) {
init();
$scope.showSelectValue = 0;
$scope.scenarioList = ["os_nosdn_kvm_noha", "os_nosdn_kvm_no", "os_nosdn_kvm_"];
function init() {}
}]);
|