Skip to content

Commit

Permalink
Fix for chrome security warning on signin
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Aug 11, 2020
1 parent ae0d506 commit fb7b15a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/window.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ module.exports = function createMainWindow (handleResize, handleClosed) {
title: 'Keep',
titleBarStyle: 'hiddenInset',
webPreferences: {
preload: `${__dirname}/browser.js`
preload: `${__dirname}/browser.js`,
}
})

window.loadURL('https://keep.google.com')
window.loadURL('https://keep.google.com', {userAgent: 'Chrome'})
window.on('resize', handleResize)
window.on('closed', handleClosed)

Expand Down

0 comments on commit fb7b15a

Please sign in to comment.