Updated Branches:
  refs/heads/master 0b736cf67 -> 30c54bcf4

Added 'completed_frameworks' sorter for /frameworks.

Completed frameworks were added to the /frameworks page in commit
77c72f3639024168996ad3257908b558beed3996, but a table sorter was not
added. This makes it possible to sort the table by any of its columns.

Review: http://reviews.apache.org/r/15581


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/30c54bcf
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/30c54bcf
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/30c54bcf

Branch: refs/heads/master
Commit: 30c54bcf4b4f5051e02ec6227f1dd378ef51aec2
Parents: bc72308
Author: Ross Allen <[email protected]>
Authored: Thu Nov 14 16:20:01 2013 -0800
Committer: Ross Allen <[email protected]>
Committed: Mon Nov 18 09:35:56 2013 -0800

----------------------------------------------------------------------
 src/webui/master/static/js/controllers.js | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/30c54bcf/src/webui/master/static/js/controllers.js
----------------------------------------------------------------------
diff --git a/src/webui/master/static/js/controllers.js 
b/src/webui/master/static/js/controllers.js
index 1c2e73a..a4c6806 100644
--- a/src/webui/master/static/js/controllers.js
+++ b/src/webui/master/static/js/controllers.js
@@ -369,6 +369,7 @@
 
     $scope.tables = {};
     $scope.tables['frameworks'] = new Table('id');
+    $scope.tables['completed_frameworks'] = new Table('id');
 
     $scope.columnClass = columnClass($scope);
     $scope.selectColumn = selectColumn($scope);

Reply via email to