1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-31 23:18:31 +00:00
* Fixed: Issue with colors not being calculated correctly when colors are being processed. Hopefully this is the last bug in the colors rewrite.
* Fixed: Incorrect PubSub event handling causing some events, notably point redemptions, to not appear correctly. Closes #1438.
* Fixed: Issue where certain pop-up elements would not close correctly when clicking outside them.
This commit is contained in:
SirStendec 2023-12-14 21:17:14 -05:00
parent d503243be1
commit 429553f5d4
5 changed files with 11 additions and 11 deletions

View file

@ -454,7 +454,7 @@ export class ClickOutside {
this.cb = callback;
this._fn = this.handleClick.bind(this);
document.documentElement.addEventListener('click', this.handleClick);
document.documentElement.addEventListener('click', this._fn);
}
destroy() {