You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.7 KiB
41 lines
1.7 KiB
/// <reference path="../../includes.ts"/>
|
|
/// <reference path="../../kubernetes/ts/kubernetesHelpers.ts"/>
|
|
/// <reference path="developerEnrichers.ts"/>
|
|
/// <reference path="developerHelpers.ts"/>
|
|
/// <reference path="developerNavigation.ts"/>
|
|
|
|
module Developer {
|
|
/* export var DataOverView = controller("DataOverView",
|
|
["$scope", "$location", "$routeParams", "$http", "$timeout", ($scope, $location:ng.ILocationService, $routeParams, $http, $timeout) => {
|
|
$scope.treeOptions = {
|
|
nodeChildren: "children",
|
|
dirSelectable: true,
|
|
injectClasses: {
|
|
ul: "a1",
|
|
li: "a2",
|
|
liSelected: "a7",
|
|
iExpanded: "a3",
|
|
iCollapsed: "a4",
|
|
iLeaf: "a5",
|
|
label: "a6",
|
|
labelSelected: "a8"
|
|
}
|
|
}
|
|
|
|
$scope.dataForTheTree =
|
|
[
|
|
{ "name" : "Joe", "age" : "21", "children" : [
|
|
{ "name" : "Smith", "age" : "42", "children" : [] },
|
|
{ "name" : "Gary", "age" : "21", "children" : [
|
|
{ "name" : "Jenifer", "age" : "23", "children" : [
|
|
{ "name" : "Dani", "age" : "32", "children" : [] },
|
|
{ "name" : "Max", "age" : "34", "children" : [] }
|
|
]}
|
|
]}
|
|
]},
|
|
{ "name" : "Albert", "age" : "33", "children" : [] },
|
|
{ "name" : "Ron", "age" : "29", "children" : [] }
|
|
];
|
|
}]);*/
|
|
}
|