Bug 488545: Include more UI when resizing controls, r=bcombee

This commit is contained in:
Mark Finkle 2009-04-15 17:23:53 -04:00
parent 6297bd86f7
commit bb96f88cd4

View File

@ -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() {