Fix base href for electron env

This commit is contained in:
ziajka 2019-01-04 10:58:35 +01:00
parent f4fbfe1ed3
commit d7529e93fd
3 changed files with 7 additions and 5 deletions

View File

@ -76,6 +76,7 @@ function createWindow () {
width: 800,
height: 600,
webPreferences: {
nodeIntegration: false,
preload: path.join(__dirname, 'sentry.js')
}
});
@ -117,8 +118,8 @@ function createWindow () {
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow);
app.on('ready', createServerProc);
app.on('will-quit', exitServerProc);
// app.on('ready', createServerProc);
// app.on('will-quit', exitServerProc);
// Quit when all windows are closed.
app.on('window-all-closed', function () {

View File

@ -1,6 +1,7 @@
const { init } = require('@sentry/electron');
const fs = require('fs');
const { ipcMain } = require('electron');
const { ipcRenderer } = require('electron')
let crashReportsEnabled = true;
const DSN =
@ -15,7 +16,7 @@ const shouldSendCallback = () => {
};
ipcMain.on('settings.changed', function (event, settings) {
ipcRenderer.on('settings.changed', function (event, settings) {
crashReportsEnabled = settings.crash_reports;
});

View File

@ -13,7 +13,7 @@
if (userAgent.indexOf(' electron/') > -1) {
var base = document.getElementsByTagName('base');
if(base.length > 0) {
base.href ='./';
base[0].href ='./';
}
else {
document.write('<base href="./" />');