1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #36 from dkanada/fullscreen

Open videos in fullscreen on android devices
This commit is contained in:
Vasily 2019-01-19 18:48:22 +03:00 committed by GitHub
commit adc74d852a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 0 deletions

View file

@ -10,6 +10,12 @@ define([], function () {
// options.path
// options.arguments
return Promise.reject();
},
enableFullscreen: function () {
// do nothing since this is for native apps
},
disableFullscreen: function () {
// do nothing since this is for native apps
}
};
});