mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix clickable area
This commit is contained in:
parent
9993f336c2
commit
d82c379cbb
1 changed files with 1 additions and 2 deletions
|
@ -240,8 +240,7 @@ define(['require', 'datetime', 'itemHelper', 'events', 'browser', 'imageLoader',
|
||||||
};
|
};
|
||||||
|
|
||||||
elem.addEventListener('click', function (e) {
|
elem.addEventListener('click', function (e) {
|
||||||
|
if (!dom.parentWithTag(e.target, ['BUTTON', 'INPUT'])) {
|
||||||
if (!dom.parentWithTag(e.target, ['BUTTON', 'INPUT', 'A'])) {
|
|
||||||
showRemoteControl(0);
|
showRemoteControl(0);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue