mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix remote control menu
This commit is contained in:
parent
81a24f35bc
commit
8c738547c6
1 changed files with 5 additions and 1 deletions
|
@ -165,7 +165,11 @@
|
||||||
|
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
|
|
||||||
dlg.querySelector('.chkMirror').addEventListener('change', onMirrorChange);
|
var chkMirror = dlg.querySelector('.chkMirror');
|
||||||
|
|
||||||
|
if (chkMirror) {
|
||||||
|
chkMirror.addEventListener('change', onMirrorChange);
|
||||||
|
}
|
||||||
|
|
||||||
dlg.open();
|
dlg.open();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue