Hi,
I am trying to work with node-webkit for one my applications. I want my application to open in Kiosk mode so I tried both the methods explained here -
https://github.com/rogerwang/node-webkit/wiki/The-Kiosk-mode. The taskbar is gone, but I do see the menu/url bar on the top from where users can open dev tool, reload, etc. Attaching the image, top-bar is highlighted in blue.
How do I get rid of this top bar?
My package.json looks like this -
{
"main": "index.html",
"name": "test app",
"description": "test app",
"version": "0.1.0",
"keywords": [ "testapp", "node-webkit" ],
"window": {
"title": "test app",
"kiosk": true
},
"webkit": {
"plugin": true
}
}