user8428135
user8428135

Reputation:

Electron Issue about close.window() Method

I have a Electron App which, on the press of a button, opens a new Window. Said Window has another button with the id of "closeBtn". Now i try to handle it in the js associated to said element with the following code

const electron = require("electron")
const path = require("path")
const remote = electron.remote

const closeBtn = document.getElementById("closeBtn")

closeBtn.addEventListener("click", function(e) {
    var window = remote.getCurrentWindow();
    window.close();
})

But somehow that doesn´t work, and the new window is not closing on the Button Press. What am i doing wrong?

Upvotes: 0

Views: 106

Answers (1)

user8428135
user8428135

Reputation:

Fixed it by adding webPreferences {nodeIntegration: true} to the values of my newly generated Window.

Upvotes: 1

Related Questions