UNPKG

quickbuild

Version:

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

9 lines (6 loc) 265 B
const {ipcRenderer} = require('electron') // Tell main process to show the menu when demo button is clicked const contextMenuBtn = document.getElementById('context-menu') contextMenuBtn.addEventListener('click', () => { ipcRenderer.send('show-context-menu') })