RSS Git Download  Clone
Raw View History
Blames found: 7 Mode: javascript Binary: false


Hang on, we reloading big blames...
const { ipcRenderer} = require('electron'); const vex = require('vex-js'); module.exports = (data) => { vex.dialog.prompt({ message: p3x.onenote.lang.label.setProxy, placeholder: p3x.onenote.lang.dialog.setProxy.placeholder,
input: `<input name="vex" type="text" class="vex-dialog-prompt-input" placeholder="${p3x.onenote.lang.dialog.setProxy.placeholder}" value="${global.p3x.onenote.data.proxy}">`,
buttons: [ Object.assign({}, vex.dialog.buttons.YES, { text: p3x.onenote.lang.button.save, }), Object.assign({}, vex.dialog.buttons.NO, { text: p3x.onenote.lang.button.cancel }), ], callback: function (value) { try { global.p3x.onenote.data.proxy = value;
//console.log('set-proxy', global.p3x.onenote.data.proxy)
ipcRenderer.send('p3x-onenote-save', global.p3x.onenote.data);
require('./load-proxy')()
} catch(e) { console.error(e) } } }) }