GUAC-1138: Move StableSort and FilterPattern into list module.

This commit is contained in:
Michael Jumper
2015-03-26 12:03:38 -07:00
parent 468a50de9e
commit a0468fb2e2
3 changed files with 4 additions and 3 deletions

View File

@@ -21,6 +21,7 @@
*/ */
/** /**
* Module for displaying the contents of a list, split into multiple pages. * Module for displaying, sorting, and filtering the contents of a list, split
* into multiple pages.
*/ */
angular.module('list', []); angular.module('list', []);

View File

@@ -23,7 +23,7 @@
/** /**
* A service for defining the FilterPattern class. * A service for defining the FilterPattern class.
*/ */
angular.module('manage').factory('FilterPattern', [ angular.module('list').factory('FilterPattern', [
function defineFilterPattern() { function defineFilterPattern() {
/** /**

View File

@@ -23,7 +23,7 @@
/** /**
* A service for defining the StableSort class. * A service for defining the StableSort class.
*/ */
angular.module('manage').factory('StableSort', [ angular.module('list').factory('StableSort', [
function defineStableSort() { function defineStableSort() {
/** /**