2014-11-12 16:45:13 +00:00
|
|
|
angular.module('masthead', [])
|
2015-12-21 03:17:01 +00:00
|
|
|
.controller('MastheadController', ['$scope', 'Version', function ($scope, Version) {
|
2015-08-25 05:59:54 +00:00
|
|
|
$scope.template = 'app/components/masthead/masthead.html';
|
2015-12-21 03:17:01 +00:00
|
|
|
$scope.showNetworksVolumes = false;
|
|
|
|
|
|
|
|
Version.get(function(d) {
|
|
|
|
if (d.ApiVersion >= 1.21) {
|
|
|
|
$scope.showNetworksVolumes = true;
|
|
|
|
}
|
|
|
|
});
|
2016-01-11 02:36:22 +00:00
|
|
|
|
|
|
|
$scope.refresh = function() {
|
|
|
|
location.reload();
|
2016-01-11 03:51:51 +00:00
|
|
|
};
|
2015-08-25 05:59:54 +00:00
|
|
|
}]);
|