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

open videos in fullscreen on android devices

This commit is contained in:
dkanada 2019-01-15 19:53:30 +09:00
parent 52cd371b51
commit e322ebaf05
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
}
};
});