Paginate main UI connection list, improve pager styles, begin proper style separation.

This commit is contained in:
Michael Jumper
2013-02-19 00:04:53 -08:00
parent b467a5945c
commit a24804a39d
7 changed files with 226 additions and 173 deletions

View File

@@ -165,6 +165,13 @@ GuacamoleService.PermissionSet = function() {
*/
GuacamoleService.Connections = {
/**
* Comparator which compares two GuacamoleService.Connection objects.
*/
"comparator" : function(a, b) {
return a.id.localeCompare(b.id);
},
/**
* Returns an array of Connections for which the current user has access.
*