Skip to content

Instantly share code, notes, and snippets.

@trevorfoskett
Created February 27, 2020 17:10
Show Gist options
  • Save trevorfoskett/810141b1480bb63ead07527abc864ad2 to your computer and use it in GitHub Desktop.
Save trevorfoskett/810141b1480bb63ead07527abc864ad2 to your computer and use it in GitHub Desktop.
Create a new window containing the settings page.
function createSettings() {
settingsPage = new BrowserWindow({
parent: win,
width: 500,
height: 310,
webPreferences: {
nodeIntegration: true
}
})
settingsPage.loadFile('./pages/settings.html');
settingsPage.on('closed', () => {
settingsPage = null;
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment