Move tag history to its own top-level tab
This commit is contained in:
parent
4f567c0654
commit
91c7396057
2 changed files with 21 additions and 1 deletions
|
@ -22,12 +22,14 @@
|
|||
$scope.logsShown = 0;
|
||||
$scope.buildsShown = 0;
|
||||
$scope.settingsShown = 0;
|
||||
$scope.historyShown = 0;
|
||||
|
||||
$scope.viewScope = {
|
||||
'selectedTags': [],
|
||||
'repository': null,
|
||||
'imageLoader': imageLoader,
|
||||
'builds': null
|
||||
'builds': null,
|
||||
'historyFilter': ''
|
||||
};
|
||||
|
||||
var buildPollChannel = null;
|
||||
|
@ -132,6 +134,10 @@
|
|||
$scope.buildsShown++;
|
||||
};
|
||||
|
||||
$scope.showHistory = function() {
|
||||
$scope.historyShown++;
|
||||
};
|
||||
|
||||
$scope.showSettings = function() {
|
||||
$scope.settingsShown++;
|
||||
};
|
||||
|
|
Reference in a new issue