Fixed workspaces (closes #439)

This commit is contained in:
Mauro Balades
2024-08-23 19:53:35 +02:00
parent e2e7756649
commit 47ba86f211
2 changed files with 5 additions and 1 deletions

View File

@@ -21,6 +21,10 @@ var gZenUIManager = {
const button = document.getElementById('zen-bookmark-button');
SidebarController.toggle('viewBookmarksSidebar', button);
},
createValidXULText(text) {
return text.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;');
}
};
var gZenVerticalTabsManager = {