mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-07 21:51:23 +00:00
GUAC-1138: Generalize "pager" module into "list" module.
This commit is contained in:
@@ -24,4 +24,4 @@
|
|||||||
* Module for displaying the contents of a connection group, allowing the user
|
* Module for displaying the contents of a connection group, allowing the user
|
||||||
* to select individual connections or groups.
|
* to select individual connections or groups.
|
||||||
*/
|
*/
|
||||||
angular.module('groupList', ['pager', 'rest']);
|
angular.module('groupList', ['list', 'rest']);
|
||||||
|
@@ -24,7 +24,7 @@
|
|||||||
* A directive which provides pagination controls, along with a paginated
|
* A directive which provides pagination controls, along with a paginated
|
||||||
* subset of the elements of some given array.
|
* subset of the elements of some given array.
|
||||||
*/
|
*/
|
||||||
angular.module('pager').directive('guacPager', [function guacPager() {
|
angular.module('list').directive('guacPager', [function guacPager() {
|
||||||
|
|
||||||
return {
|
return {
|
||||||
restrict: 'E',
|
restrict: 'E',
|
@@ -23,4 +23,4 @@
|
|||||||
/**
|
/**
|
||||||
* Module for displaying the contents of a list, split into multiple pages.
|
* Module for displaying the contents of a list, split into multiple pages.
|
||||||
*/
|
*/
|
||||||
angular.module('pager', []);
|
angular.module('list', []);
|
@@ -25,9 +25,9 @@
|
|||||||
*/
|
*/
|
||||||
angular.module('manage', [
|
angular.module('manage', [
|
||||||
'groupList',
|
'groupList',
|
||||||
|
'list',
|
||||||
'locale',
|
'locale',
|
||||||
'notification',
|
'notification',
|
||||||
'pager',
|
|
||||||
'rest',
|
'rest',
|
||||||
'userMenu'
|
'userMenu'
|
||||||
]);
|
]);
|
||||||
|
Reference in New Issue
Block a user