Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
Set allowDisplayingInsecureContent flag.
Browse files Browse the repository at this point in the history
This allows embedded images over HTTP to be displayed.

Fixes #13.
  • Loading branch information
russss committed Mar 10, 2016
1 parent 7c8e6dd commit 4ef5880
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ const config = new ConfigStore('IRCCloud', {

function openMainWindow() {
mainWindow = new BrowserWindow({'width': config.get('width'),
'height': config.get('height')});
'height': config.get('height'),
'allowDisplayingInsecureContent': true});
mainWindow.loadURL('https://www.irccloud.com');

mainWindow.on('closed', function() {
Expand Down

0 comments on commit 4ef5880

Please sign in to comment.