etcd/mod/dashboard/app/page/browser/node-info-ctrl.js
2014-04-14 12:13:04 -07:00

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');
};
});