diff options
author | Simon Rettberg | 2017-02-01 13:45:51 +0100 |
---|---|---|
committer | Simon Rettberg | 2017-02-01 13:45:51 +0100 |
commit | 51ce2ee32af69eb7e18c716605ad060a21c0de01 (patch) | |
tree | a8e0577ad3a26b6a20695aabe2deb3c63784b894 /modules-available/statistics_reporting | |
parent | [statistics_reporting] Fix loadForm() and further js interaction if sessionSt... (diff) | |
download | slx-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.html | 2 |
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>'); }); |