1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-17 19:40:54 +00:00
* Added: Setting to hide the border around streams in the directory that have guest stars.
* Fixed: Issue with chat alternating backgrounds not appearing correctly after a Twitch update. Some settings may still not be working (notably: separators)
* Fixed: Issue where FFZ could be injected into a page twice, breaking basically everything.
* Experiments: Disable the EMQX experiment. It's not working out.
This commit is contained in:
SirStendec 2024-10-22 17:19:03 -04:00
parent efd6d2fa42
commit 1cacacaecb
17 changed files with 134 additions and 30 deletions

View file

@ -38,6 +38,15 @@ export default class BaseSite extends Module {
return this._react = react;
}
getReactDom() {
if ( this._reactDom )
return this._reactDom;
let reactDom = this.resolve('site.web_munch')?.getModule?.('react-dom');
if ( reactDom?.createPortal )
return this._reactDom = reactDom;
}
findReact() {
const react = this.getReact();
if ( react )