From 2683ddb1ee6ce8679d3f15d44c34700b755759c5 Mon Sep 17 00:00:00 2001 From: Kevan Ahlquist Date: Sun, 10 Jan 2016 20:36:22 -0600 Subject: [PATCH] Add refresh button. --- app/components/masthead/masthead.html | 27 ++++++++++++------- app/components/masthead/mastheadController.js | 4 +++ 2 files changed, 22 insertions(+), 9 deletions(-) diff --git a/app/components/masthead/masthead.html b/app/components/masthead/masthead.html index 7ff8766a0..0e358e7cb 100644 --- a/app/components/masthead/masthead.html +++ b/app/components/masthead/masthead.html @@ -1,12 +1,21 @@

DockerUI

- + + +
+ +
diff --git a/app/components/masthead/mastheadController.js b/app/components/masthead/mastheadController.js index ae375cab4..713ff8bf3 100644 --- a/app/components/masthead/mastheadController.js +++ b/app/components/masthead/mastheadController.js @@ -8,4 +8,8 @@ angular.module('masthead', []) $scope.showNetworksVolumes = true; } }); + + $scope.refresh = function() { + location.reload(); + } }]);