如何在 Firefox 4 中用动画关闭标签页?
将我的扩展移至 Firefox 4,我注意到我的旧代码会立即关闭选项卡:
gBrowser.removeTab(tab)
在 Firefox 4 中,如果该过程是由用户启动的,则选项卡会以一些动画关闭。
如何以相同的方式以编程方式关闭选项卡?
Moving my extension to Firefox 4, I noticed my old code closes tabs immediately :
gBrowser.removeTab(tab)
While in Firefox 4, tabs are being closed with some animation if the process was initiated by a user.
How to programmatically close tabs in the same manner?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有同样的问题并在其他地方找到了答案...
并且您可能已经知道首选项是
browser.tabs.animate
。Had the same question and found the answer somewhere else...
And you probably already know that the preference is
browser.tabs.animate
.