1
0
Fork 0
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:
Kevan Ahlquist 2015-12-20 21:17:01 -06:00
parent 8a900254ae
commit eede27e263
7 changed files with 218 additions and 4 deletions

View file

@ -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;
}
});
}]);