我正在尝试根据浏览器的窗口高度使附加组件的面板大小响应。 如何从firefox附加组件中获取浏览器的窗口高度?
答案 0 :(得分:0)
您可以使用
window.innerHeight
但请确保window
不是内容窗口,而是浏览器XUL窗口。
答案 1 :(得分:-1)
var wuntils = require('sdk/window/utils');
var window = wuntils.getMostRecentBrowserWindow();
console.log(window.gBrowser.clientWidth, window.gBrowser.clientHeight);