mirror of https://github.com/portainer/portainer
10 lines
355 B
JavaScript
10 lines
355 B
JavaScript
angular.module('footer', [])
|
|
.controller('FooterController', ['$scope', 'Settings', 'Docker', function ($scope, Settings, Docker) {
|
|
$scope.template = 'app/components/footer/statusbar.html';
|
|
|
|
$scope.uiVersion = Settings.uiVersion;
|
|
Docker.get({}, function (d) {
|
|
$scope.apiVersion = d.ApiVersion;
|
|
});
|
|
}]);
|