GUAC-1099: Paginate guacGroupList directive.

This commit is contained in:
Michael Jumper
2015-02-26 17:33:45 -08:00
parent 09a9fd0876
commit ac3ee41699
4 changed files with 21 additions and 5 deletions

View File

@@ -21,7 +21,8 @@
*/
/**
* A directive which displays the contents of a connection group.
* A directive which displays the contents of a connection group within an
* automatically-paginated view.
*/
angular.module('groupList').directive('guacGroupList', [function guacGroupList() {
@@ -75,7 +76,14 @@ angular.module('groupList').directive('guacGroupList', [function guacGroupList()
*
* @type Boolean
*/
showRootGroup : '='
showRootGroup : '=',
/**
* The maximum number of connections or groups to show per page.
*
* @type Number
*/
pageSize : '='
},