1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-17 02:16:54 +00:00

4.0.0-rc3. Display a warning for complex or invalid filtering terms, using the safe-regex NPM module. Add a separate Regex (Word) filtering mode. Fix channel hosting control. Fix hide extensions. Add a fix for bad local echo emote indices for chat. Position the color picker above rather than below for filter terms. Apply a dark theme to the color picker. Rewrite the filter terms editor to use the term editor component for adding a new term.

This commit is contained in:
SirStendec 2018-06-27 14:13:59 -04:00
parent 2a790ad7cd
commit 038270d232
23 changed files with 669 additions and 423 deletions

View file

@ -244,15 +244,17 @@ export default class ChatLine extends Module {
e('span', {
className: 'chat-line__message--badges'
}, t.chat.badges.render(msg, e)),
e('a', {
className: 'chat-author__display-name notranslate',
e('button', {
className: 'chat-line__username notranslate',
style: { color },
onClick: this.usernameClickHandler, // this.ffz_user_click_handler
}, [
user.userDisplayName,
e('span', {
className: 'chat-author__display-name'
}, user.displayName),
user.isIntl && e('span', {
className: 'chat-author__intl-login'
}, ` (${user.userLogin})`)
}, ` (${user.login})`)
]),
e('span', null, is_action ? ' ' : ': '),
show ?