Electron app load external URL on application closePHP Logout Script with 4 frames in framesetOpen external file with ElectronUsing console.log() in Electron appDetect multiple tabs or windows of the same session in a web applicationPHP header(Location:'index.php') and javascript not being executedLoad Electron application from URLCannot read property on of undefined. Electron BrowserWindow objecthow to make a conditional ajax call triggered by onbeforeload based on a variable's valueAngular / Electron using the renderer.js with angular componentsLoading div from external site in Electron app
Check if three arrays contains the same element
Why can I traceroute to this IP address, but not ping?
Why did Sanhedrin deal with who has a share in Olam Habah?
Is it possible to fly backward if you have 'really strong' headwind?
Why was this person allowed to become Grand Maester?
How to handle (one's own) self-harm scars (on the arm), in a work environment?
You have (3^2 + 2^3 + 2^2) Guesses Left. Figure out the Last one
Thread Pool C++ Implementation
Why is a common reference string needed in zero knowledge proofs?
Is it possible to have a wealthy country without a middle class?
How to use memset in c++?
Why does Sin[b-a] simplify to -Sin[a-b]?
New pedal fell off maybe 50 miles after installation. Should I replace the entire crank, just the arm, or repair the thread?
Is using 'echo' to display attacker-controlled data on the terminal dangerous?
Russian word for a male zebra
A map of non-pathological topology?
Why didn't Voldemort recognize that Dumbledore was affected by his curse?
If I leave the US through an airport, do I have to return through the same airport?
English word for "product of tinkering"
What to do when surprise and a high initiative roll conflict with the narrative?
What ways have you found to get edits from non-LaTeX users?
Writing an augmented sixth chord on the flattened supertonic
What is the color of artificial intelligence?
Why we don’t make use of the t-distribution for constructing a confidence interval for a proportion?
Electron app load external URL on application close
PHP Logout Script with 4 frames in framesetOpen external file with ElectronUsing console.log() in Electron appDetect multiple tabs or windows of the same session in a web applicationPHP header(Location:'index.php') and javascript not being executedLoad Electron application from URLCannot read property on of undefined. Electron BrowserWindow objecthow to make a conditional ajax call triggered by onbeforeload based on a variable's valueAngular / Electron using the renderer.js with angular componentsLoading div from external site in Electron app
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am trying to load a log-out URL once the app close button is hit,
Something like the following. Problem is that I am receiving an error that the window is already closed and can't load. Any help achieve this will be appreciated.
app.on('ready', function ()
// Create new window
mainWindow = new BrowserWindow(webPreferences:
nodeIntegration: false
);
// Load php index into window
mainWindow.setTitle('Test');
mainWindow.loadURL('http://www.url.com/index.php');
//mainWindow.webContents.openDevTools();
mainWindow.setMenu(null);
mainWindow.on('closed', () =>
mainWindow.loadURL('https://www.url.com/logout.php?logout=true');
mainWindow = null;
app.quit();
);
);
javascript electron
add a comment |
I am trying to load a log-out URL once the app close button is hit,
Something like the following. Problem is that I am receiving an error that the window is already closed and can't load. Any help achieve this will be appreciated.
app.on('ready', function ()
// Create new window
mainWindow = new BrowserWindow(webPreferences:
nodeIntegration: false
);
// Load php index into window
mainWindow.setTitle('Test');
mainWindow.loadURL('http://www.url.com/index.php');
//mainWindow.webContents.openDevTools();
mainWindow.setMenu(null);
mainWindow.on('closed', () =>
mainWindow.loadURL('https://www.url.com/logout.php?logout=true');
mainWindow = null;
app.quit();
);
);
javascript electron
1
Doesn't make sense. It's like saying ... when I close my browser go to a different web site. Perhaps all you need is to make an a ajax request?
– charlietfl
Mar 24 at 19:04
Well, the idea is closing the browser window first, than trigger the URL to log out and that to close the app. Thought that with simple link visit will be easier than ajax request. And with Ajax might face problems with cors cross domain.
– John Siniger
Mar 24 at 19:27
add a comment |
I am trying to load a log-out URL once the app close button is hit,
Something like the following. Problem is that I am receiving an error that the window is already closed and can't load. Any help achieve this will be appreciated.
app.on('ready', function ()
// Create new window
mainWindow = new BrowserWindow(webPreferences:
nodeIntegration: false
);
// Load php index into window
mainWindow.setTitle('Test');
mainWindow.loadURL('http://www.url.com/index.php');
//mainWindow.webContents.openDevTools();
mainWindow.setMenu(null);
mainWindow.on('closed', () =>
mainWindow.loadURL('https://www.url.com/logout.php?logout=true');
mainWindow = null;
app.quit();
);
);
javascript electron
I am trying to load a log-out URL once the app close button is hit,
Something like the following. Problem is that I am receiving an error that the window is already closed and can't load. Any help achieve this will be appreciated.
app.on('ready', function ()
// Create new window
mainWindow = new BrowserWindow(webPreferences:
nodeIntegration: false
);
// Load php index into window
mainWindow.setTitle('Test');
mainWindow.loadURL('http://www.url.com/index.php');
//mainWindow.webContents.openDevTools();
mainWindow.setMenu(null);
mainWindow.on('closed', () =>
mainWindow.loadURL('https://www.url.com/logout.php?logout=true');
mainWindow = null;
app.quit();
);
);
javascript electron
javascript electron
asked Mar 24 at 18:59
John SinigerJohn Siniger
5371926
5371926
1
Doesn't make sense. It's like saying ... when I close my browser go to a different web site. Perhaps all you need is to make an a ajax request?
– charlietfl
Mar 24 at 19:04
Well, the idea is closing the browser window first, than trigger the URL to log out and that to close the app. Thought that with simple link visit will be easier than ajax request. And with Ajax might face problems with cors cross domain.
– John Siniger
Mar 24 at 19:27
add a comment |
1
Doesn't make sense. It's like saying ... when I close my browser go to a different web site. Perhaps all you need is to make an a ajax request?
– charlietfl
Mar 24 at 19:04
Well, the idea is closing the browser window first, than trigger the URL to log out and that to close the app. Thought that with simple link visit will be easier than ajax request. And with Ajax might face problems with cors cross domain.
– John Siniger
Mar 24 at 19:27
1
1
Doesn't make sense. It's like saying ... when I close my browser go to a different web site. Perhaps all you need is to make an a ajax request?
– charlietfl
Mar 24 at 19:04
Doesn't make sense. It's like saying ... when I close my browser go to a different web site. Perhaps all you need is to make an a ajax request?
– charlietfl
Mar 24 at 19:04
Well, the idea is closing the browser window first, than trigger the URL to log out and that to close the app. Thought that with simple link visit will be easier than ajax request. And with Ajax might face problems with cors cross domain.
– John Siniger
Mar 24 at 19:27
Well, the idea is closing the browser window first, than trigger the URL to log out and that to close the app. Thought that with simple link visit will be easier than ajax request. And with Ajax might face problems with cors cross domain.
– John Siniger
Mar 24 at 19:27
add a comment |
1 Answer
1
active
oldest
votes
I'm a little confused by what you're trying to do, but it sounds like you can just load the URL when the close
event is triggered, cancel the event to prevent closed
from firing, and then when the page has loaded, you could close again, but this time for real.
mainWindow.on('close', (e) =>
mainWindow.webContents.on('did-finish-load', logOutPageLoaded);
mainWindow.loadURL('https://www.url.com/logout.php?logout=true');
e.preventDefault();
);
function logOutPageLoaded()
mainWindow.destroy();
mainWindow.on('closed', () =>
mainWindow = null;
app.quit();
);
This is exactly what I needed!
– John Siniger
Mar 25 at 12:08
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55327390%2felectron-app-load-external-url-on-application-close%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I'm a little confused by what you're trying to do, but it sounds like you can just load the URL when the close
event is triggered, cancel the event to prevent closed
from firing, and then when the page has loaded, you could close again, but this time for real.
mainWindow.on('close', (e) =>
mainWindow.webContents.on('did-finish-load', logOutPageLoaded);
mainWindow.loadURL('https://www.url.com/logout.php?logout=true');
e.preventDefault();
);
function logOutPageLoaded()
mainWindow.destroy();
mainWindow.on('closed', () =>
mainWindow = null;
app.quit();
);
This is exactly what I needed!
– John Siniger
Mar 25 at 12:08
add a comment |
I'm a little confused by what you're trying to do, but it sounds like you can just load the URL when the close
event is triggered, cancel the event to prevent closed
from firing, and then when the page has loaded, you could close again, but this time for real.
mainWindow.on('close', (e) =>
mainWindow.webContents.on('did-finish-load', logOutPageLoaded);
mainWindow.loadURL('https://www.url.com/logout.php?logout=true');
e.preventDefault();
);
function logOutPageLoaded()
mainWindow.destroy();
mainWindow.on('closed', () =>
mainWindow = null;
app.quit();
);
This is exactly what I needed!
– John Siniger
Mar 25 at 12:08
add a comment |
I'm a little confused by what you're trying to do, but it sounds like you can just load the URL when the close
event is triggered, cancel the event to prevent closed
from firing, and then when the page has loaded, you could close again, but this time for real.
mainWindow.on('close', (e) =>
mainWindow.webContents.on('did-finish-load', logOutPageLoaded);
mainWindow.loadURL('https://www.url.com/logout.php?logout=true');
e.preventDefault();
);
function logOutPageLoaded()
mainWindow.destroy();
mainWindow.on('closed', () =>
mainWindow = null;
app.quit();
);
I'm a little confused by what you're trying to do, but it sounds like you can just load the URL when the close
event is triggered, cancel the event to prevent closed
from firing, and then when the page has loaded, you could close again, but this time for real.
mainWindow.on('close', (e) =>
mainWindow.webContents.on('did-finish-load', logOutPageLoaded);
mainWindow.loadURL('https://www.url.com/logout.php?logout=true');
e.preventDefault();
);
function logOutPageLoaded()
mainWindow.destroy();
mainWindow.on('closed', () =>
mainWindow = null;
app.quit();
);
answered Mar 25 at 0:13
pushkinpushkin
4,806123056
4,806123056
This is exactly what I needed!
– John Siniger
Mar 25 at 12:08
add a comment |
This is exactly what I needed!
– John Siniger
Mar 25 at 12:08
This is exactly what I needed!
– John Siniger
Mar 25 at 12:08
This is exactly what I needed!
– John Siniger
Mar 25 at 12:08
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55327390%2felectron-app-load-external-url-on-application-close%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Doesn't make sense. It's like saying ... when I close my browser go to a different web site. Perhaps all you need is to make an a ajax request?
– charlietfl
Mar 24 at 19:04
Well, the idea is closing the browser window first, than trigger the URL to log out and that to close the app. Thought that with simple link visit will be easier than ajax request. And with Ajax might face problems with cors cross domain.
– John Siniger
Mar 24 at 19:27