I'm trying to build a node-webkit app, currently I'm experimenting on package.json
Here is the contents so far:
{
"name": "nw-demo",
"main": "index.html",
"window": {
"title": "node-webkit demo",
"icon": "icon.png",
"toolbar": false,
"frame": true,
"fullscreen": true
}
}
How do I make my node-webkit app load on fullscreen?
Docs says:
(boolean) whether window is fullscreen (available after node-webkit v0.3.0)
So why didn't the above package.json
work?