зеркало из https://github.com/mozilla/pjs.git
fix for outliner behaving weird when all columns are hidden (bug 66719), r=pchen, sr=hyatt
This commit is contained in:
Родитель
a8c540fc30
Коммит
7af2554f8e
|
@ -526,7 +526,8 @@
|
|||
var count = 0;
|
||||
|
||||
while (currCol) {
|
||||
while (currCol && currCol.localName != "outlinercol")
|
||||
while (currCol && (currCol.localName != "outlinercol" ||
|
||||
currCol.getAttribute("primary") == "true"))
|
||||
currCol = currCol.nextSibling;
|
||||
|
||||
if (currCol && (currCol != this)) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче