Node Webkit: Using Fullscreen API while beeing in kiosk mode -


my node webkit app starts in "kiosk" mode. want able open app element (eg video) in fullscreen mode using:

element.webkitrequestfullscreen();

it doesn't seem work cause "kiosk" mode seems fullscreen mode.

any ideas?

you need make kiosk : true in package.json file

{     "name": "app",     "window": {         "kiosk" : true     } } 

Comments

Popular posts from this blog

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -

javascript - Using jquery append to add option values into a select element not working -

javascript - Restarting Supervisor and effect on FlaskSocketIO -