aboutsummaryrefslogtreecommitdiff
path: root/src/content_scripts/notify.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/content_scripts/notify.ts')
-rw-r--r--src/content_scripts/notify.ts10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/content_scripts/notify.ts b/src/content_scripts/notify.ts
index a0f76cf26..726b5aed4 100644
--- a/src/content_scripts/notify.ts
+++ b/src/content_scripts/notify.ts
@@ -256,15 +256,19 @@ function init() {
window.setTimeout(init, 200);
return;
}
- initStyle();
- setStyles(true);
+ if (document.documentElement.getAttribute("data-taler-nojs")) {
+ initStyle();
+ setStyles(true);
+ }
registerHandlers();
// Hack to know when the extension is unloaded
let port = chrome.runtime.connect();
port.onDisconnect.addListener(() => {
logVerbose && console.log("chrome runtime disconnected, removing handlers");
- setStyles(false);
+ if (document.documentElement.getAttribute("data-taler-nojs")) {
+ setStyles(false);
+ }
for (let handler of handlers) {
document.removeEventListener(handler.type, handler.listener);
}