I'm wondering if anyone has a link to a list of Node Webkit script commands.
Saved in my story I have this to toggle fullscreen, but I can't for the life of me remember where I got it from. This works for what it does, but I'm wondering if there are more commands that can be used.
var gui = require('nw.gui');
var currentWindow = gui.Window.get();
currentWindow.toggleFullscreen();
Comments