1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-28 21:48:31 +00:00

Move chat-line into its own module. Update the chat buffer code to always remove visible lines in pairs to avoid messing up rendering. Grab chat line types from webpack.

This commit is contained in:
SirStendec 2017-11-14 22:13:30 -05:00
parent 2c28afc6a6
commit 10c6c1cb87
3 changed files with 269 additions and 162 deletions

View file

@ -86,7 +86,8 @@ export default class Twilight extends BaseSite {
Twilight.KNOWN_MODULES = {
simplebar: n => n.globalObserver && n.initDOMLoadedElements,
react: n => n.Component && n.createElement,
'extension-service': n => n.extensionService
'extension-service': n => n.extensionService,
'chat-types': n => n.a && n.a.PostWithMention
}