mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 07:49:41 +02:00
Implement volumes, hide networks and volumes tabs for APIs older than v1.21.
This commit is contained in:
parent
8a900254ae
commit
eede27e263
7 changed files with 218 additions and 4 deletions
|
@ -1,4 +1,11 @@
|
|||
angular.module('masthead', [])
|
||||
.controller('MastheadController', ['$scope', function ($scope) {
|
||||
.controller('MastheadController', ['$scope', 'Version', function ($scope, Version) {
|
||||
$scope.template = 'app/components/masthead/masthead.html';
|
||||
$scope.showNetworksVolumes = false;
|
||||
|
||||
Version.get(function(d) {
|
||||
if (d.ApiVersion >= 1.21) {
|
||||
$scope.showNetworksVolumes = true;
|
||||
}
|
||||
});
|
||||
}]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue