mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix sync layout
This commit is contained in:
parent
e0d2a9298b
commit
ee11212148
4 changed files with 16 additions and 2 deletions
|
@ -113,6 +113,10 @@
|
|||
|
||||
function allowSwipeOn(elem) {
|
||||
|
||||
if (dom.parentWithTag(elem, 'input')) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (elem.classList) {
|
||||
return !elem.classList.contains('hiddenScrollX') && !elem.classList.contains('smoothScrollX') && !elem.classList.contains('libraryViewNav');
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue