UNPKG

quickbuild

Version:

A mature, feature-complete application generator with an emphasis on speed

14 lines (10 loc) 418 B
const {BrowserWindow} = require('electron').remote const newWindowBtn = document.getElementById('frameless-window') const path = require('path') newWindowBtn.addEventListener('click', (event) => { const modalPath = path.join('file://', __dirname, '../../sections/windows/modal.html') let win = new BrowserWindow({ frame: false }) win.on('close', () => { win = null }) win.loadURL(modalPath) win.show() })