1
0
Fork 0
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:
Luke Pulverenti 2016-08-01 14:16:07 -04:00
parent e0d2a9298b
commit ee11212148
4 changed files with 16 additions and 2 deletions

View file

@ -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');
}