mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-08-17 19:40:54 +00:00
4.75.4
* 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:
parent
efd6d2fa42
commit
1cacacaecb
17 changed files with 134 additions and 30 deletions
|
@ -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 )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue