mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add tv genre configuration options
This commit is contained in:
parent
81ab24a44c
commit
f13258a120
24 changed files with 261 additions and 143 deletions
|
@ -103,6 +103,8 @@
|
|||
}
|
||||
}
|
||||
|
||||
var inputId = 0;
|
||||
|
||||
EmbySelectPrototype.createdCallback = function () {
|
||||
|
||||
var parent = this.parentNode;
|
||||
|
@ -112,8 +114,10 @@
|
|||
parent.replaceChild(div, this);
|
||||
div.appendChild(this);
|
||||
}
|
||||
|
||||
if (!this.id) {
|
||||
this.id = 'select' + new Date().getTime();
|
||||
this.id = 'embyselect' + inputId;
|
||||
inputId++;
|
||||
}
|
||||
|
||||
this.removeEventListener('mousedown', onMouseDown);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue