- onenote.git
- src
- electron
- window
- onenote
- event
- handler.js
This file ( 760B ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
const electron =require('electron');
const shell = electron.shell;
const ipc = electron.ipcRenderer;
const handler = (options) => {
const { webview } = options;
/*
webview.addEventListener('did-stop-loading', function(event) {
// webview.insertCSS(window.cssData);
});
*/
webview.addEventListener('did-navigate', function(event, url) {
global.p3x.onenote.data.url = webview.src;
ipc.send('p3x-onenote-save', global.p3x.onenote.data);
});
webview.addEventListener('new-window', function(event) {
if (/https?:\/\/(www\.)?onenote\.com/.test(event.url)) {
webview.src = event.url;
} else {
shell.openExternal(event.url);
}
});
}
module.exports =handler