CHANGELOG | ●●●●● patch | view | raw | blame | history | |
program/js/app.js | ●●●●● patch | view | raw | blame | history | |
skins/default/images/sort_asc.gif | patch | view | raw | blame | history | |
skins/default/images/sort_desc.gif | patch | view | raw | blame | history |
CHANGELOG
@@ -1,6 +1,7 @@ CHANGELOG RoundCube Webmail =========================== - Fix wrong column sort order icons (#1485823) - Updated TinyMCE to 3.2.3 version - Fix attachment names encoding when charset isn't specified in attachment part (#1484969) - Fix message normal priority problem (#1485820) program/js/app.js
@@ -599,19 +599,14 @@ // get the type of sorting var a_sort = props.split('_'); var sort_col = a_sort[0]; var sort_order = a_sort[1] ? a_sort[1].toUpperCase() : null; var sort_order = a_sort[1] ? a_sort[1].toUpperCase() : 'ASC'; // no sort order specified: toggle if (sort_order==null) { if (this.env.sort_col==sort_col) if (this.env.sort_col==sort_col) { sort_order = this.env.sort_order=='ASC' ? 'DESC' : 'ASC'; else sort_order = this.env.sort_order; } if (this.env.sort_col==sort_col && this.env.sort_order==sort_order) if (this.env.sort_order==sort_order) break; } // set table header class $('#rcm'+this.env.sort_col).removeClass('sorted'+(this.env.sort_order.toUpperCase())); skins/default/images/sort_asc.gifskins/default/images/sort_desc.gif