@@ -100,7 +100,7 @@ sorttable = {
100
100
this . removeChild ( document . getElementById ( 'sorttable_sortfwdind' ) ) ;
101
101
sortrevind = document . createElement ( 'span' ) ;
102
102
sortrevind . id = "sorttable_sortrevind" ;
103
- sortrevind . innerHTML = stIsIE ? ' <font face="webdings">5</font>' : ' ▴ ;' ;
103
+ sortrevind . innerHTML = stIsIE ? ' <font face="webdings">5</font>' : ' ▾ ;' ;
104
104
this . appendChild ( sortrevind ) ;
105
105
return ;
106
106
}
@@ -113,7 +113,7 @@ sorttable = {
113
113
this . removeChild ( document . getElementById ( 'sorttable_sortrevind' ) ) ;
114
114
sortfwdind = document . createElement ( 'span' ) ;
115
115
sortfwdind . id = "sorttable_sortfwdind" ;
116
- sortfwdind . innerHTML = stIsIE ? ' <font face="webdings">6</font>' : ' ▾ ;' ;
116
+ sortfwdind . innerHTML = stIsIE ? ' <font face="webdings">6</font>' : ' ▴ ;' ;
117
117
this . appendChild ( sortfwdind ) ;
118
118
return ;
119
119
}
@@ -134,7 +134,7 @@ sorttable = {
134
134
this . className += ' sorttable_sorted' ;
135
135
sortfwdind = document . createElement ( 'span' ) ;
136
136
sortfwdind . id = "sorttable_sortfwdind" ;
137
- sortfwdind . innerHTML = stIsIE ? ' <font face="webdings">6</font>' : ' ▾ ;' ;
137
+ sortfwdind . innerHTML = stIsIE ? ' <font face="webdings">6</font>' : ' ▴ ;' ;
138
138
this . appendChild ( sortfwdind ) ;
139
139
140
140
// build an array to sort. This is a Schwartzian transform thing,
0 commit comments