设置弹出高度

时间:2012-12-15 03:53:37

标签: safari-extension

我希望能够在单击工具栏项时动态更改弹出窗口的高度。工具栏项和弹出窗口已经正常工作。代码在popovers javascript中执行。

此页面表明可以完成但不提供任何示例: https://developer.apple.com/library/archive/documentation/Tools/Conceptual/SafariExtensionGuide/AddingPopovers/AddingPopovers.html

You can change the height and width properties of your popover at runtime.

有谁知道如何实现这个目标?

1 个答案:

答案 0 :(得分:6)

,例如,来自popover中运行的脚本:

safari.self.height = 400;

如果要从全局页面设置高度:

safari.extension.popovers[0].width = 600;