diff --git a/dashboard-ui/bower_components/emby-webcomponents/dialoghelper/dialoghelper.css b/dashboard-ui/bower_components/emby-webcomponents/dialoghelper/dialoghelper.css index 8d3a25bb69..91b7fa5cb9 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/dialoghelper/dialoghelper.css +++ b/dashboard-ui/bower_components/emby-webcomponents/dialoghelper/dialoghelper.css @@ -29,6 +29,15 @@ max-width: none; } +.dialog-fullscreen { + position: fixed; + top: 0; + bottom: 0; + left: 0; + right: 0; + margin: 0; +} + @media screen and (max-width: 1280px), screen and (max-height: 720px) { .dialog-fixedSize { position: fixed; diff --git a/dashboard-ui/bower_components/emby-webcomponents/scroller/smoothscroller.js b/dashboard-ui/bower_components/emby-webcomponents/scroller/smoothscroller.js index 91c7e7423f..abb38832e9 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/scroller/smoothscroller.js +++ b/dashboard-ui/bower_components/emby-webcomponents/scroller/smoothscroller.js @@ -879,12 +879,13 @@ define(['browser', 'layoutManager', 'dom', 'scrollStyles'], function (browser, l slideeElement.style['will-change'] = 'transform'; } + dragSourceElement.addEventListener('mousedown', dragInitSlidee); + if (transform) { dom.addEventListener(dragSourceElement, 'touchstart', dragInitSlidee, { passive: true }); - dragSourceElement.addEventListener('mousedown', dragInitSlidee); if (!o.scrollWidth) { dom.addEventListener(window, 'resize', onResize, {