Mozilla“Jetpack”附加组件:将面板锚定到小部件

发布于 2024-10-28 14:31:40 字数 443 浏览 3 评论 0原文

我正在制作一个 Jetpack 扩展,其中一个小部件打开一个面板。单击小部件将按预期打开面板(锚定在小部件的右下角)。但是,如果我从代码中调用 widget.panel.show(),面板将与小部件分离打开,位于屏幕中央,漂浮在空间中。

简而言之,我该如何解决这个问题?

  1. 我可以(以某种方式)模拟小部件上的点击事件,而不是调用 widget.panel.show() 吗?

  2. 我可以强制面板锚定到小部件吗?

这个问题有一个在以前的 Jetpack API 中有效的解决方案,但我无法转换为新界面: 在新的 Jetpack API 中使用定位“面板”

I'm making a Jetpack extension in which a widget opens a panel. Clicking the widget opens the panel as expected (anchored in the lower-right corner to the widget). But if I call widget.panel.show() from my code, the panel opens detached from the widget, centered in the screen, floating in space.

In short, how can I fix this?

  1. Can I simulate a click event on the widget (somehow) instead of calling widget.panel.show()?

  2. Can I force the panel to anchor to the widget?

This question has a solution that worked in the previous Jetpack API, but I can't translate to the new interface:
Using positioning 'Panel' in new Jetpack API

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

变身佩奇 2024-11-04 14:31:40
panel.show(require("tab-browser").activeTab.ownerDocument.getElementById('widget:[email protected]'));

适用于我的 Addon SDK 1.8.1
地点:
[email protected] - 来自 package.json 的插件 ID
yourWidgetId - 你的小部件 ID

panel.show(require("tab-browser").activeTab.ownerDocument.getElementById('widget:[email protected]'));

Works for me with Addon SDK 1.8.1
Where:
[email protected] - your addon id from package.json
yourWidgetId - your widget id

奈何桥上唱咆哮 2024-11-04 14:31:40
panel.show(widget)

不工作?

panel.show(widget)

isn't working?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文