UNPKG

quickbuild

Version:

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

11 lines (9 loc) 247 B
const {ipcMain} = require('electron') const path = require('path') ipcMain.on('ondragstart', (event, filepath) => { const iconName = 'codeIcon.png' event.sender.startDrag({ file: filepath, icon: path.join(__dirname, iconName) }) })