GUAC-1138: Rename StableSort to SortOrder.

This commit is contained in:
Michael Jumper
2015-03-26 14:30:02 -07:00
parent 4f5c757b43
commit fc0908f9f3
3 changed files with 22 additions and 22 deletions

View File

@@ -29,7 +29,7 @@ angular.module('manage').controller('manageSessionsController', ['$scope', '$inj
// Required types
var ActiveConnectionWrapper = $injector.get('ActiveConnectionWrapper');
var ConnectionGroup = $injector.get('ConnectionGroup');
var StableSort = $injector.get('StableSort');
var SortOrder = $injector.get('SortOrder');
// Required services
var activeConnectionService = $injector.get('activeConnectionService');
@@ -55,12 +55,12 @@ angular.module('manage').controller('manageSessionsController', ['$scope', '$inj
$scope.wrappers = null;
/**
* StableSort instance which maintains the sort order of the visible
* SortOrder instance which maintains the sort order of the visible
* connection wrappers.
*
* @type StableSort
* @type SortOrder
*/
$scope.wrapperOrder = new StableSort([
$scope.wrapperOrder = new SortOrder([
'activeConnection.username',
'activeConnection.startDate',
'activeConnection.remoteHost',