bug 9916: (follow-up) restore default sort order for OPAC search history

To test:

[1] Go to the search history page on the OPAC.
[2] Verify that the searches are sorted in order of decreasing time.

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
This commit is contained in:
Galen Charlton 2013-08-19 14:44:08 +00:00
parent 1b6452bc54
commit 7a967161dc

View file

@ -11,7 +11,7 @@
// We show table ordered by descending dates by default // We show table ordered by descending dates by default
// (so that the more recent query is shown first) // (so that the more recent query is shown first)
$(".historyt").dataTable($.extend(true, {}, dataTablesDefaults, { $(".historyt").dataTable($.extend(true, {}, dataTablesDefaults, {
"aaSorting": [[ 0, "asc" ]], "aaSorting": [[ 0, "desc" ]],
"aoColumns": [ "aoColumns": [
{ "sType": "title-string" }, { "sType": "title-string" },
null, null,