From 7a25c78e46336be4b700e196b7c72d218497b04c Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 21 Oct 2013 10:32:33 -0400 Subject: [PATCH] display sort order directly on list page --- dashboard-ui/scripts/librarybrowser.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js index 824f863b70..10bcb7f8a6 100644 --- a/dashboard-ui/scripts/librarybrowser.js +++ b/dashboard-ui/scripts/librarybrowser.js @@ -1096,7 +1096,7 @@ getViewSummaryHtml: function (query, checkedSortOption) { var html = ''; - return html; + if (query.SortBy) { var id = checkedSortOption[0].id; @@ -1105,7 +1105,7 @@ html += 'Sorted by ' + sortBy.trim().toLowerCase() + ', ' + (query.SortOrder || 'ascending').toLowerCase(); if (!checkedSortOption.hasClass('defaultSort')) { - html += ''; + //html += ''; } }