Update DisplayServersAsChannels.plugin.js

This commit is contained in:
Mirco Wittrien 2019-03-27 11:39:13 +01:00
parent 09e9ace891
commit e199b16ed6
1 changed files with 0 additions and 2 deletions

View File

@ -246,11 +246,9 @@ class DisplayServersAsChannels {
var appcontainer = document.querySelector(BDFDB.dotCN.appcontainer);
BDFDB.addEventListener(this, wrapper, "mouseenter", BDFDB.dotCN.guild, e => {
if (e.currentTarget.tagName && e.currentTarget.querySelector(BDFDB.dotCN.guildserror)) return;
BDFDB.appendLocalStyle("HideAllToolTips" + this.name, `${BDFDB.dotCN.tooltip} {display: none !important;}`);
});
BDFDB.addEventListener(this, wrapper, "mouseleave", BDFDB.dotCN.guild, e => {
if (e.currentTarget.tagName && e.currentTarget.querySelector(BDFDB.dotCN.guildserror)) return;
BDFDB.removeLocalStyle("HideAllToolTips" + this.name);
});