From adfa4129bba55f211dfc5a3b2e40ff100a7f3a10 Mon Sep 17 00:00:00 2001 From: Tery Lim Date: Sun, 16 Oct 2016 11:50:24 +1300 Subject: [PATCH] Update sort icons Arrow down - Descending Arrow up - Ascending --- sorttable.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sorttable.js b/sorttable.js index f571270..14f9ac4 100644 --- a/sorttable.js +++ b/sorttable.js @@ -101,7 +101,7 @@ sorttable = { this.removeChild(document.getElementById('sorttable_sortfwdind')); sortrevind = document.createElement('span'); sortrevind.id = "sorttable_sortrevind"; - sortrevind.innerHTML = stIsIE ? ' 5' : ' ▴'; + sortrevind.innerHTML = stIsIE ? ' 5' : ' ▾'; this.appendChild(sortrevind); return; } @@ -114,7 +114,7 @@ sorttable = { this.removeChild(document.getElementById('sorttable_sortrevind')); sortfwdind = document.createElement('span'); sortfwdind.id = "sorttable_sortfwdind"; - sortfwdind.innerHTML = stIsIE ? ' 6' : ' ▾'; + sortfwdind.innerHTML = stIsIE ? ' 6' : ' ▴'; this.appendChild(sortfwdind); return; } @@ -135,7 +135,7 @@ sorttable = { this.className += ' sorttable_sorted'; sortfwdind = document.createElement('span'); sortfwdind.id = "sorttable_sortfwdind"; - sortfwdind.innerHTML = stIsIE ? ' 6' : ' ▾'; + sortfwdind.innerHTML = stIsIE ? ' 6' : ' ▴'; this.appendChild(sortfwdind); // build an array to sort. This is a Schwartzian transform thing,