Skip to content
Snippets Groups Projects
Commit 0a8b0bf6 authored by David Benson's avatar David Benson
Browse files

Try again dialog if offline in setup

parent e1fbd48b
No related branches found
No related tags found
No related merge requests found
......@@ -109,6 +109,28 @@ function createWindow (opt = {})
console.log('Window closed idx:%d', index)
windowsRegistry.splice(index, 1)
})
mainWindow.webContents.on('did-fail-load', function()
{
console.log('did-fail-load');
var choice = dialog.showMessageBox(mainWindow,
{
type: 'question',
buttons: ['Try again', 'Quit'],
title: 'Launcher',
message: 'Ensure you are online to setup'
});
if (choice === 0)
{
mainWindow.loadURL(wurl);
}
else if (choice === 1)
{
app.quit();
}
});
return mainWindow.id
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment