Started working on workspaces

This commit is contained in:
Mauro Balades
2024-07-13 17:53:22 +02:00
parent c76492571b
commit c63cfebd4f
6 changed files with 81 additions and 50 deletions

View File

@@ -8,5 +8,11 @@ var gZenUIManager = {
}
let tab = window.gBrowser.addTrustedTab(url, options);
window.gBrowser.selectedTab = tab;
}
},
generateUuidv4() {
return "10000000-1000-4000-8000-100000000000".replace(/[018]/g, c =>
(+c ^ crypto.getRandomValues(new Uint8Array(1))[0] & 15 >> +c / 4).toString(16)
);
},
};