GUAC-1138: Generalize "pager" module into "list" module.

This commit is contained in:
Michael Jumper
2015-03-26 12:01:50 -07:00
parent 8434a67229
commit 468a50de9e
6 changed files with 4 additions and 4 deletions

View File

@@ -24,4 +24,4 @@
* Module for displaying the contents of a connection group, allowing the user
* to select individual connections or groups.
*/
angular.module('groupList', ['pager', 'rest']);
angular.module('groupList', ['list', 'rest']);

View File

@@ -24,7 +24,7 @@
* A directive which provides pagination controls, along with a paginated
* subset of the elements of some given array.
*/
angular.module('pager').directive('guacPager', [function guacPager() {
angular.module('list').directive('guacPager', [function guacPager() {
return {
restrict: 'E',

View File

@@ -23,4 +23,4 @@
/**
* Module for displaying the contents of a list, split into multiple pages.
*/
angular.module('pager', []);
angular.module('list', []);

View File

@@ -25,9 +25,9 @@
*/
angular.module('manage', [
'groupList',
'list',
'locale',
'notification',
'pager',
'rest',
'userMenu'
]);