Fix Chartbeat flicker control div's (#3913)

This commit is contained in:
Fanboynz 2024-02-14 10:35:20 +13:00 committed by GitHub
parent 6551cab525
commit 397d6d47b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -27,4 +27,8 @@
activity: noopfn,
virtualPage: noopfn
};
const flickerElm = document.querySelector('[id^=chartbeat-flicker-control]')
if (flickerElm) {
flickerElm.parentNode.removeChild(flickerElm)
}
})();