You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@lolamtisch what about an option to make it auto enter fullscreen when playing an episode? that is a rather universal application. I just added that feature to my keyboard shortcuts userscript with this small bit of code
var elem = document.getElementsByTagName("video")[0];
if (elem.requestFullscreen) {
elem.requestFullscreen();
} else if (elem.msRequestFullscreen) {
elem.msRequestFullscreen();
} else if (elem.mozRequestFullScreen) {
elem.mozRequestFullScreen();
} else if (elem.webkitRequestFullscreen) {
elem.webkitRequestFullscreen();
}
I'm just trying to show my support for you and your amazing project, I know I'm a newb when it comes to coding, but i still like to try.
@lolamtisch what about an option to make it auto enter fullscreen when playing an episode? that is a rather universal application. I just added that feature to my keyboard shortcuts userscript with this small bit of code
I'm just trying to show my support for you and your amazing project, I know I'm a newb when it comes to coding, but i still like to try.
Originally posted by @stapuft in #72 (comment)
The text was updated successfully, but these errors were encountered: