mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
xmltv fixes
This commit is contained in:
parent
0623156e11
commit
e8739bf7c3
@ -142,8 +142,13 @@
|
||||
}
|
||||
|
||||
var scrollType = layoutManager.desktop ? 'smoothScrollY' : 'hiddenScrollY';
|
||||
var style = (browser.noFlex || browser.firefox) ? ' style="max-height:400px;"' : '';
|
||||
html += '<div class="actionSheetScroller ' + scrollType + '"' + style + '>';
|
||||
var style = (browser.noFlex || browser.firefox) ? 'max-height:400px;' : '';
|
||||
|
||||
// Admittedly a hack but right now the scrollbar is being factored into the width which is causing truncation
|
||||
if (options.items.length > 20) {
|
||||
style += "min-width:200px;";
|
||||
}
|
||||
html += '<div class="actionSheetScroller ' + scrollType + '" style="' + style + '">';
|
||||
|
||||
var i, length, option;
|
||||
var renderIcon = false;
|
||||
|
Loading…
Reference in New Issue
Block a user