mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-04 12:49:03 +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) {
|
export default async function (api, db) {
|
||||||
const { html, sendMessage } = api,
|
const { html, sendMessage } = api,
|
||||||
{ addMutationListener, removeMutationListener } = api,
|
{ addMutationListener } = api,
|
||||||
displayLabel = ($btn) => {
|
displayLabel = ($btn) => {
|
||||||
if ($btn.innerHTML === $btn.ariaLabel) return;
|
if ($btn.innerHTML === $btn.ariaLabel) return;
|
||||||
$btn.style.width = "auto";
|
$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");
|
const alwaysOnTopButton = await db.get("alwaysOnTopButton");
|
||||||
if (alwaysOnTopButton === "Disabled") return;
|
if (alwaysOnTopButton === "Disabled") return;
|
||||||
const notionTopbar = ".notion-topbar",
|
const notionTopbar = ".notion-topbar",
|
||||||
|
Loading…
Reference in New Issue
Block a user