Bug 1132950 - Don't keep showing sort arrow on a column if another column is selected. r=jaws

This commit is contained in:
Tim Nguyen 2015-02-14 10:41:00 +01:00
parent e7afd7d13d
commit b5b229780b

View File

@ -95,7 +95,7 @@ var view = {
pref = gPrefView[index];
var old = document.getElementById(gSortedColumn);
old.setAttribute("sortDirection", "");
old.removeAttribute("sortDirection");
gPrefArray.sort(gSortFunction = gSortFunctions[col.id]);
if (gPrefView != gPrefArray)
gPrefView.sort(gSortFunction);