VENOM-10: Clean Up Code

This commit is contained in:
Maurice Grönwoldt 2020-12-08 18:37:59 +01:00
commit 85549fbd43
10 changed files with 28 additions and 35 deletions

View file

@ -310,6 +310,12 @@ const rippler = new VRipple();
window._openVSelect = this;
this.isOpen = true;
}
let l = $('v-label', this).classList;
if (this.isOpen) {
l.add('open');
} else {
l.remove('open');
}
}
}

File diff suppressed because one or more lines are too long