mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-10 05:47:04 +00:00
Fixing bug 47536 - column hiding is broken. r=hyatt.
This commit is contained in:
parent
fc5313569d
commit
a85b7867cd
@ -28,6 +28,9 @@ function BuildTreePopup( treeColGroup, treeHeadRow, popup, skipCell )
|
||||
var currTreeCol = treeHeadRow.firstChild;
|
||||
var currColNode = treeColGroup.firstChild;
|
||||
while (currTreeCol) {
|
||||
if (currColNode.tagName == "splitter")
|
||||
currColNode = currColNode.nextSibling;
|
||||
|
||||
if (skipCell != currTreeCol) {
|
||||
// Construct an entry for each cell in the row.
|
||||
var columnName = currTreeCol.getAttribute("value");
|
||||
|
Loading…
Reference in New Issue
Block a user