#48 Several optimizations for font color enhancements

This commit is contained in:
Serraniel 2020-12-29 17:07:33 +01:00
parent 96000452cf
commit ac26b2b330
Signed by: Serraniel
GPG key ID: 3690B4E7364525D3

View file

@ -54,8 +54,7 @@ function tryRegisterObserverForBadge(badge: Node): void {
mutations.forEach(mutation => {
// prevent recursive calls when our class is added / removed
if (mutation.target instanceof Element) {
// TODO: Validate if that still works
if ((mutation.oldValue?.indexOf(DARKCOLOR_CLASS) ?? -1 ^ (mutation.target?.classList?.contains(DARKCOLOR_CLASS) ?? false ? 0 : -1)) === 0) {
if ((mutation.oldValue?.indexOf(DARKCOLOR_CLASS) >= 0 ?? false) !== (mutation.target?.classList?.contains(DARKCOLOR_CLASS) ?? false)) {
return;
}
else {