mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
23 lines
487 B
JavaScript
23 lines
487 B
JavaScript
(function () {
|
|
|
|
function forceScroll() {
|
|
|
|
var doc = $(document);
|
|
|
|
// Try to make it react quicker to the orientation change
|
|
doc.scrollTop(doc.scrollTop() + 1);
|
|
|
|
$('paper-tabs').filter(':visible').hide().show();
|
|
}
|
|
|
|
function onOrientationChange() {
|
|
|
|
forceScroll();
|
|
for (var i = 0; i <= 500; i += 100) {
|
|
setTimeout(forceScroll, i);
|
|
}
|
|
}
|
|
|
|
$(window).on('orientationchange', onOrientationChange);
|
|
|
|
})(); |