mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 15:29:42 +02:00
7 lines
313 B
JavaScript
7 lines
313 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; });
|
|
}]);
|