1
0
Fork 0
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:
Luke Pulverenti 2015-09-08 16:40:48 -04:00
parent 1f556561c6
commit e9daebe89d
50 changed files with 1801 additions and 211 deletions

View file

@ -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);
}
}