mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update action sheet
This commit is contained in:
parent
79b9a76c6b
commit
c959aa01a2
22 changed files with 123 additions and 153 deletions
|
@ -6,7 +6,7 @@
|
|||
var hasChanges = false;
|
||||
|
||||
// These images can be large and we're seeing memory problems in safari
|
||||
var browsableImagePageSize = browserInfo.safari ? 6 : 10;
|
||||
var browsableImagePageSize = browserInfo.safari ? 6 : (browserInfo.mobile ? 10 : 30);
|
||||
|
||||
var browsableImageStartIndex = 0;
|
||||
var browsableImageType = 'Primary';
|
||||
|
@ -272,7 +272,8 @@
|
|||
currentItemType = itemType;
|
||||
|
||||
var dlg = paperDialogHelper.createDialog({
|
||||
size: 'fullscreen-border'
|
||||
size: 'fullscreen-border',
|
||||
lockScroll: true
|
||||
});
|
||||
|
||||
var theme = 'b';
|
||||
|
|
|
@ -452,9 +452,9 @@
|
|||
|
||||
function selectDate(page) {
|
||||
|
||||
require(['actionsheet'], function () {
|
||||
require(['actionsheet'], function (actionsheet) {
|
||||
|
||||
ActionSheetElement.show({
|
||||
actionsheet.show({
|
||||
items: dateOptions,
|
||||
showCancel: true,
|
||||
title: Globalize.translate('HeaderSelectDate'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue