mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-06-28 05:15:54 +00:00
Fix bug tokenizing cheers in messages. Try to fix any bugs getting a user for a room. Strip apollo 404 messages from Sentry. Don't show the expansion arrows in the emote menu when using a filter. Fix emoji tab completion a bit. 🐝
should not match 🍺
. Start using crossorigin for script serving. Add a debug transformation for localization.
This commit is contained in:
parent
730e2129e9
commit
e581b50b08
13 changed files with 133 additions and 18 deletions
|
@ -73,7 +73,7 @@ export class Tooltip {
|
|||
} else if ( this.live ) {
|
||||
this._onMouseOver = e => {
|
||||
const target = e.target;
|
||||
if ( target && target.classList.contains(this.cls) )
|
||||
if ( target && target.classList && target.classList.contains(this.cls) )
|
||||
this._enter(target);
|
||||
};
|
||||
|
||||
|
@ -296,8 +296,8 @@ export class Tooltip {
|
|||
|
||||
|
||||
// Add everything to the DOM and create the Popper instance.
|
||||
this.parent.appendChild(el);
|
||||
tip.popper = new Popper(target, el, pop_opts);
|
||||
this.parent.appendChild(el);
|
||||
tip.visible = true;
|
||||
|
||||
if ( opts.onShow )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue