зеркало из https://github.com/mozilla/pjs.git
Bug 221503 Bookmarks chevron updates unnecessarily r=varga sr=alecf
This commit is contained in:
Родитель
1b5d100655
Коммит
0fee3e7793
|
@ -717,11 +717,20 @@ var BookmarksToolbar =
|
|||
|
||||
resizeFunc: function(event)
|
||||
{
|
||||
if (event && event.target != document)
|
||||
return; // only interested in chrome resizes
|
||||
|
||||
var buttons = document.getElementById("bookmarks-ptf");
|
||||
if (!buttons)
|
||||
return;
|
||||
|
||||
var chevron = document.getElementById("bookmarks-chevron");
|
||||
if (!buttons.firstChild) {
|
||||
// No bookmarks means no chevron
|
||||
chevron.collapsed = true;
|
||||
return;
|
||||
}
|
||||
|
||||
chevron.collapsed = false;
|
||||
var chevronWidth = chevron.boxObject.width;
|
||||
chevron.collapsed = true;
|
||||
|
|
Загрузка…
Ссылка в новой задаче