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

Add favorite emotes. Add emote menu sorting. Use a CSS variable for border colors for chat lines. Use fixed emote images for the emote menu.

This commit is contained in:
SirStendec 2018-04-09 19:57:05 -04:00
parent a01b21e9d9
commit 1841ab156c
13 changed files with 450 additions and 99 deletions

View file

@ -259,6 +259,16 @@ export default class Chat extends Module {
}
});
this.settings.add('chat.click-emotes', {
default: true,
ui: {
path: 'Chat > Behavior >> General',
title: 'Open emote information pages by Shift-Clicking them.',
component: 'setting-check-box'
}
});
this.context.on('changed:theme.is-dark', () => {
for(const room of this.iterateRooms())
room.buildBitsCSS();