mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-12 06:52:25 +00:00
Bug 488545: Include more UI when resizing controls, r=bcombee
This commit is contained in:
parent
6297bd86f7
commit
bb96f88cd4
@ -215,6 +215,20 @@ var BrowserUI = {
|
||||
let sideBarHeight = windowH - this._toolbarH;
|
||||
document.getElementById("browser-controls").height = sideBarHeight;
|
||||
document.getElementById("tabs-container").height = sideBarHeight;
|
||||
|
||||
// bookmark editor
|
||||
let bmkeditor = document.getElementById("bookmark-container");
|
||||
bmkeditor.width = windowW;
|
||||
|
||||
// bookmark list
|
||||
let bookmarks = document.getElementById("bookmarklist-container");
|
||||
bookmarks.height = windowH;
|
||||
bookmarks.width = windowW;
|
||||
|
||||
// tools panel
|
||||
let panel = document.getElementById("panel-container");
|
||||
panel.height = windowH;
|
||||
panel.width = windowW;
|
||||
},
|
||||
|
||||
init : function() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user