Landscape mode for mobile on fullscreen videos; autoplay
This commit is contained in:
9
js/ui.js
9
js/ui.js
@@ -72,4 +72,13 @@ if (window.location.href.includes('credits')) {
|
||||
document.addEventListener('readystatechange', () => {
|
||||
Farapp.slideshow();
|
||||
});
|
||||
}
|
||||
/**
|
||||
* Landscape orientation when fullscreen?!
|
||||
* @todo Reliable check for mobile???
|
||||
*/
|
||||
if ("maxTouchPoints" in navigator) {
|
||||
document.addEventListener('fullscreenchange', () => {
|
||||
screen.orientation.lock('landscape');
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user