mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-03 12:19:02 +00:00
fix(topbar): disable always on top in browser
This commit is contained in:
parent
d651b5ceea
commit
7ad446ade8
@ -15,7 +15,7 @@ const pinLabel = "Pin always on top",
|
||||
|
||||
export default async function (api, db) {
|
||||
const { html, sendMessage } = api,
|
||||
{ addMutationListener, removeMutationListener } = api,
|
||||
{ addMutationListener } = api,
|
||||
displayLabel = ($btn) => {
|
||||
if ($btn.innerHTML === $btn.ariaLabel) return;
|
||||
$btn.style.width = "auto";
|
||||
@ -104,6 +104,7 @@ export default async function (api, db) {
|
||||
}
|
||||
});
|
||||
|
||||
if (!["linux", "win32", "darwin"].includes(api.platform)) return;
|
||||
const alwaysOnTopButton = await db.get("alwaysOnTopButton");
|
||||
if (alwaysOnTopButton === "Disabled") return;
|
||||
const notionTopbar = ".notion-topbar",
|
||||
|
Loading…
Reference in New Issue
Block a user