diff --git a/site/read/work/js/sorttable.js b/site/read/work/js/sorttable.js index fba063eb5118ea4503a49f0189c24ac027f3521c..b5757850e55a27a6ced5e5c66d69f86db00e4329 100644 --- a/site/read/work/js/sorttable.js +++ b/site/read/work/js/sorttable.js @@ -114,8 +114,8 @@ sorttable = { this.removeChild(document.getElementById('sorttable_sortrevind')); sortfwdind = document.createElement('span'); sortfwdind.id = "sorttable_sortfwdind"; - //sortfwdind.innerHTML = stIsIE ? ' <font face="webdings">6</font>' : ' 𥭎'; - sortfwdind.innerHTML = stIsIE ? ' <font face="webdings">6</font>' : ' 𥭄'; + //sortfwdind.innerHTML = stIsIE ? ' <font face="webdings">6</font>' : ' ▾'; + sortfwdind.innerHTML = stIsIE ? ' <font face="webdings">6</font>' : ' ▴'; this.appendChild(sortfwdind); return; } @@ -136,7 +136,8 @@ sorttable = { this.className += ' sorttable_sorted'; sortfwdind = document.createElement('span'); sortfwdind.id = "sorttable_sortfwdind"; - sortfwdind.innerHTML = stIsIE ? ' <font face="webdings">6</font>' : ' ▾'; + //sortfwdind.innerHTML = stIsIE ? ' <font face="webdings">6</font>' : ' ▾'; + sortfwdind.innerHTML = stIsIE ? ' <font face="webdings">6</font>' : ' ▴'; this.appendChild(sortfwdind); // build an array to sort. This is a Schwartzian transform thing,