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
2 changed files with 14 additions and 0 deletions
+6
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
}
};
});