mirror of https://github.com/portainer/portainer
25 lines
708 B
JavaScript
25 lines
708 B
JavaScript
angular.module('containerInspect', ['angular-json-tree'])
|
|
.controller('ContainerInspectController', ['$scope', '$transition$', 'Notifications', 'ContainerService',
|
|
function ($scope, $transition$, Notifications, ContainerService) {
|
|
|
|
$scope.state = { DisplayTextView: false };
|
|
$scope.containerInfo = {};
|
|
|
|
function initView() {
|
|
$('#loadingViewSpinner').show();
|
|
|
|
ContainerService.inspect($transition$.params().id)
|
|
.then(function success(d) {
|
|
$scope.containerInfo = d;
|
|
})
|
|
.catch(function error(e) {
|
|
Notifications.error('Failure', e, 'Unable to inspect container');
|
|
})
|
|
.finally(function final() {
|
|
$('#loadingViewSpinner').hide();
|
|
});
|
|
}
|
|
|
|
initView();
|
|
}]);
|