UNPKG

electron-dialogbox

Version:

The utility for making simple html base dialog box for Electron base application.

15 lines (11 loc) 363 B
'use strict'; const { remote } = require('electron'); const eDialog = remote.require(require.resolve('./index-for-main')); const original = eDialog.getInstance; eDialog.getInstance = function(browserWindow) { if (!browserWindow) { browserWindow = remote.getCurrentWindow(); } return original(browserWindow); } module.exports = eDialog;