mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
17 lines
321 B
JavaScript
17 lines
321 B
JavaScript
'use strict';
|
|
|
|
angular.module('etcd.page')
|
|
.controller('NodeInfoCtrl', function($scope, $modalInstance, _, node) {
|
|
|
|
$scope.node = node;
|
|
|
|
$scope.objectKeys = _.without(_.keys(node), 'value', '$$hashKey');
|
|
|
|
$scope.identityFn = _.identity;
|
|
|
|
$scope.close = function() {
|
|
$modalInstance.dismiss('close');
|
|
};
|
|
|
|
});
|