This repository has been archived on 2024-07-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Original-Bds-Maneger-GUI/p.js
T

6 lines
202 B
JavaScript

// put this preload for main-window to give it prompt()
const ipcRenderer = require('electron').ipcRenderer
window.prompt = function(title, val){
return ipcRenderer.sendSync('prompt', {title, val})
}