diff options
author | Byron Jones <bjones@mozilla.com> | 2012-06-13 10:25:34 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2012-06-13 10:25:34 +0200 |
commit | 6d75beffb9d1667aacc233c359fb296e26aac871 (patch) | |
tree | 4ebfd663c534ce3d57e23d668e12ec6b7fa3dff5 | |
parent | dcb960710fada1f72b71ee1146741c22259a4d2d (diff) | |
download | bugzilla-6d75beffb9d1667aacc233c359fb296e26aac871.tar.gz bugzilla-6d75beffb9d1667aacc233c359fb296e26aac871.tar.xz |
Bug 657946: fix sorttable arrows to match buglist
-rw-r--r-- | extensions/BMO/web/js/sorttable.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/BMO/web/js/sorttable.js b/extensions/BMO/web/js/sorttable.js index 33b35de88..0873dc20a 100644 --- a/extensions/BMO/web/js/sorttable.js +++ b/extensions/BMO/web/js/sorttable.js @@ -189,7 +189,7 @@ sorttable = { // reverse the table, which is quicker sorttable.reverse_table(cell); - sorttable._mark_column_as_sorted(cell, '▲', 1); + sorttable._mark_column_as_sorted(cell, '▼', 1); return 1; } @@ -198,7 +198,7 @@ sorttable = { // re-reverse the table, which is quicker sorttable.reverse_table(cell); - sorttable._mark_column_as_sorted(cell, '▼', 0); + sorttable._mark_column_as_sorted(cell, '▲', 0); return 1; } |