summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics_reporting
diff options
context:
space:
mode:
authorSimon Rettberg2017-02-01 13:45:51 +0100
committerSimon Rettberg2017-02-01 13:45:51 +0100
commit51ce2ee32af69eb7e18c716605ad060a21c0de01 (patch)
treea8e0577ad3a26b6a20695aabe2deb3c63784b894 /modules-available/statistics_reporting
parent[statistics_reporting] Fix loadForm() and further js interaction if sessionSt... (diff)
downloadslx-admin-51ce2ee32af69eb7e18c716605ad060a21c0de01.tar.gz
slx-admin-51ce2ee32af69eb7e18c716605ad060a21c0de01.tar.xz
slx-admin-51ce2ee32af69eb7e18c716605ad060a21c0de01.zip
[statistics_reporting] Fix sort arrow direction
Diffstat (limited to 'modules-available/statistics_reporting')
-rw-r--r--modules-available/statistics_reporting/templates/columnChooser.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules-available/statistics_reporting/templates/columnChooser.html b/modules-available/statistics_reporting/templates/columnChooser.html
index cfaf086c..86903583 100644
--- a/modules-available/statistics_reporting/templates/columnChooser.html
+++ b/modules-available/statistics_reporting/templates/columnChooser.html
@@ -93,7 +93,7 @@
var th = $(this).find("th");
th.find(".arrow").remove();
var dir = $.fn.stupidtable.dir;
- var arrow = data.direction === dir.ASC ? "down" : "up";
+ var arrow = data.direction === dir.ASC ? "up" : "down";
th.eq(data.column).append(' <span class="arrow glyphicon glyphicon-chevron-'+arrow+'"></span>');
});