mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-06-27 21:05:53 +00:00
Add Emoji Rendering. Add basic emoji tab-completion. The emote menu needs a re-think for performance. Strip out more Apollo bugs. Fix tooltips being silly.
This commit is contained in:
parent
1b2ff27530
commit
9c95335743
14 changed files with 504 additions and 28 deletions
|
@ -247,6 +247,10 @@ export default class Emotes extends Module {
|
|||
source = emote_set.source || 'ffz';
|
||||
id = emote.id;
|
||||
|
||||
} else if ( provider === 'emoji' ) {
|
||||
source = 'emoji';
|
||||
id = ds.code;
|
||||
|
||||
} else
|
||||
return;
|
||||
|
||||
|
@ -467,6 +471,8 @@ export default class Emotes extends Module {
|
|||
|
||||
if ( data.users )
|
||||
this.loadSetUsers(data.users);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue