1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update components

This commit is contained in:
Luke Pulverenti 2016-05-30 12:09:47 -04:00
parent e6d3222572
commit 0afeb5bdd4
8 changed files with 206 additions and 11 deletions

View file

@ -39,10 +39,10 @@
this.addEventListener('focus', function () {
onChange.call(this);
label.classList.add('inputLabelFocused');
label.classList.add('focused');
});
this.addEventListener('blur', function () {
label.classList.remove('inputLabelFocused');
label.classList.remove('focused');
});
this.addEventListener('change', onChange);