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


Hang on, we reloading big blames...
const { ipcRenderer } = require('electron'); global.p3x = { onenote: { webview: undefined, lang: require('../../../translation/default'), data: { url: 'about:blank', proxy: '', } } } require('./vex'); document.title = global.p3x.onenote.lang.title; window.p3xOneNoteOnLoad = function() { const webview = document.getElementById("p3x-onenote-webview"); global.p3x.onenote.webview = webview; webview.focus() const ipcHandler = require('./ipc/handler'); ipcHandler({ webview: webview, }) const eventHandler = require('./event/handler'); eventHandler({ webview: webview, }) ipcRenderer.send('did-finish-load'); }