We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42f1418 commit cc65915Copy full SHA for cc65915
addon/chrome/content/tab/tab.js
@@ -1047,9 +1047,10 @@ Tabmix.bottomToolbarUtils = {
1047
</vbox>`
1048
);
1049
fragment.collapsed = gBrowser.tabContainer.collapsed;
1050
+ const fullscreenItem = Tabmix.isVersion(1360) ? "fullscreen-warning" : "fullscreen-and-pointerlock-wrapper";
1051
const referenceNode =
1052
+ document.getElementById(fullscreenItem)?.nextSibling ??
1053
document.getElementById("customization-container")?.nextSibling ??
- document.getElementById("fullscreen-and-pointerlock-wrapper")?.nextSibling ??
1054
document.getElementById("browser-bottombox");
1055
referenceNode?.parentNode?.insertBefore(fragment, referenceNode);
1056
Object.defineProperty(this, "toolbox", {
0 commit comments