-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fullscreen support #55
Comments
I think a more general window attributes API would be very beneficial. For instance. I need to be able to minimize/close into the system tray rather than to the task bar. To be able to modify the window attributes to adjust the window border and to indicate that shutdown is not an option would be good as well. |
@rrichardson Appjs does something like this. They add |
Does this also include full screen video support? Because now if you use HTML5 video within node-webkit you're unable to make it fullscreen |
There three type of full screens:
All of them will be supported. |
Sweet! |
Is there a any progress on this issue especially fullscreen html5 video ? |
I too would love to see the HTML5 API implemented. My app runs beautifully on node-webkit, but fullscreening a portion of it is a major feature that's currently only available on the web-based version. Can't wait to have this available on the desktop! |
Also, if HTML5 fullscreen API is not supported, it should at least report document.webkitFullscreenEnabled as false, so that I can accurately hide fullscreen controls when in node-webkit. Right now it reports as true, but calling element.webkitRequestFullScreen() does nothing. |
Any progress on HTML5 fullscreen support? Would love to have full screen support for my HTML5 videos. |
We're also interested in this fullscreen support. Do you have any idea of when it's gonna be implemented? |
I would also totally love to be able to run fullscreen videos in nw. And a million thanks for the awesome work! |
This has been open for quite a while, is there any particular hold up? |
+1 |
Love to see HTML5 fullscreen API support too! |
It would be awesome to have chromeless full screen support for apps. Like the kiosk mode in Chromium or the Full Screen mode by pressing F11. |
Awesome @Mithgol I will check it out. Thanks |
Hi guys, I am trying to run video with html5 video tag in node-webkit version 0.9.2 with the help of video.js library. So before playing the video , I want it to open it in full screen. but right now its playing video nicely but not going into full screen , actually I tried with "video.webkitRequestFullscreen" but nothing happened :(. so does it mean , as of now we can not use the full screen functionality in node-webkit? Thanks! |
@neilmalgaonkar You should probably try node-webkit's API instead of WebKit's. Try this: https://github.com/rogerwang/node-webkit/wiki/Window#windowenterfullscreen |
Thanks @Mithgol. |
I'm also looking for fullscreen certain elements rather than the whole app. Any workaround? In the meantime I've solved my issue with some css and toggleFullscreen, but it doesn't seem too elegant. |
HTML5 fullscreen API is not supported and that's why this issue is still open. |
Two things on fullscreen we should support:
The text was updated successfully, but these errors were encountered: