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

update metadata editor

This commit is contained in:
Luke Pulverenti 2016-07-02 22:47:39 -04:00
parent 9ea4a29401
commit a033df6932
9 changed files with 29 additions and 24 deletions

View file

@ -8,6 +8,7 @@
height: 0;
transition-property: height;
transition-duration: 300ms;
overflow: hidden;
}
.emby-collapsible-button {

View file

@ -47,9 +47,11 @@
var collapseContent = this.parentNode.querySelector('.collapseContent');
if (collapseContent.classList.contains('expanded')) {
if (collapseContent.expanded) {
collapseContent.expanded = false;
slideUpToHide(this, collapseContent);
} else {
collapseContent.expanded = true;
slideDownToShow(this, collapseContent);
}
}