Add pagination to the tags view

This commit is contained in:
Joseph Schorr 2015-06-25 15:47:37 -04:00
parent 0d133b0fa4
commit 672e8a5ba9
7 changed files with 113 additions and 2 deletions

View file

@ -24,7 +24,8 @@ angular.module('quay').directive('repoPanelTags', function () {
$scope.checkedTags = UIService.createCheckStateController([], 'name');
$scope.options = {
'predicate': 'last_modified_datetime',
'reverse': false
'reverse': false,
'page': 0
};
$scope.iterationState = {};