mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
limit videos for keyframe extraction
This commit is contained in:
parent
1f556561c6
commit
e9daebe89d
50 changed files with 1801 additions and 211 deletions
|
@ -11,6 +11,8 @@
|
|||
|
||||
function hideStatusBar() {
|
||||
if (options.type == 'video' && window.StatusBar) {
|
||||
StatusBar.backgroundColorByName("black");
|
||||
StatusBar.overlaysWebView(true);
|
||||
StatusBar.hide();
|
||||
}
|
||||
}
|
||||
|
@ -18,6 +20,7 @@
|
|||
function showStatusBar() {
|
||||
if (options.type == 'video' && window.StatusBar) {
|
||||
StatusBar.show();
|
||||
StatusBar.overlaysWebView(false);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue