mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update translations
This commit is contained in:
parent
4e86a39f8c
commit
28f378f8db
19 changed files with 284 additions and 64 deletions
34
dashboard-ui/thirdparty/cordova/android/immersive.js
vendored
Normal file
34
dashboard-ui/thirdparty/cordova/android/immersive.js
vendored
Normal file
|
@ -0,0 +1,34 @@
|
|||
(function () {
|
||||
|
||||
function onSuccess() {
|
||||
console.log('Immersive mode succeeded');
|
||||
}
|
||||
|
||||
function onError() {
|
||||
console.log('Immersive mode failed');
|
||||
}
|
||||
|
||||
//// Is this plugin supported?
|
||||
//AndroidFullScreen.isSupported();
|
||||
|
||||
//// Is immersive mode supported?
|
||||
//AndroidFullScreen.isImmersiveModeSupported(successFunction, errorFunction);
|
||||
|
||||
//// The width of the screen in immersive mode
|
||||
//AndroidFullScreen.immersiveWidth(trace, errorFunction);
|
||||
|
||||
//// The height of the screen in immersive mode
|
||||
//AndroidFullScreen.immersiveHeight(trace, errorFunction);
|
||||
|
||||
//// Hide system UI until user interacts
|
||||
//AndroidFullScreen.leanMode(successFunction, errorFunction);
|
||||
|
||||
//// Show system UI
|
||||
//AndroidFullScreen.showSystemUI(successFunction, errorFunction);
|
||||
|
||||
//// Extend your app underneath the system UI (Android 4.4+ only)
|
||||
//AndroidFullScreen.showUnderSystemUI(successFunction, errorFunction);
|
||||
|
||||
//// Hide system UI and keep it hidden (Android 4.4+ only)
|
||||
//AndroidFullScreen.immersiveMode(successFunction, errorFunction);
|
||||
})();
|
Loading…
Add table
Add a link
Reference in a new issue