mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update people queries
This commit is contained in:
parent
99768ecffe
commit
17a0f1578d
22 changed files with 215 additions and 123 deletions
2
dashboard-ui/cordova/imagestore.js
vendored
2
dashboard-ui/cordova/imagestore.js
vendored
|
@ -57,7 +57,7 @@
|
|||
// Use the embedded server for iOS8, and also if we don't know the iOS version, just to be safe
|
||||
//if ($.browser.iOSVersion == 8 || !$.browser.iOSVersion)
|
||||
{
|
||||
return url.replace('file://', '');
|
||||
//return url.replace('file://', '');
|
||||
}
|
||||
}
|
||||
return url;
|
||||
|
|
4
dashboard-ui/cordova/ios/actionsheet.js
vendored
4
dashboard-ui/cordova/ios/actionsheet.js
vendored
|
@ -25,7 +25,9 @@
|
|||
|
||||
if (options.callback) {
|
||||
|
||||
if (index >= 1) {
|
||||
// Results are 1-based
|
||||
if (index >= 1 && options.items.length >= index) {
|
||||
|
||||
options.callback(options.items[index - 1].id);
|
||||
}
|
||||
}
|
||||
|
|
2
dashboard-ui/cordova/remotecontrols.js
vendored
2
dashboard-ui/cordova/remotecontrols.js
vendored
|
@ -26,7 +26,7 @@
|
|||
var elapsedTime = playState.PositionTicks ? (playState.PositionTicks / 10000000) : 0;
|
||||
|
||||
var url = '';
|
||||
var imgHeight = 100;
|
||||
var imgHeight = 600;
|
||||
|
||||
var nowPlayingItem = state.NowPlayingItem;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue