const { remote } = require("electron"); // <- The Node.js require() function is
// added to JavaScript by electron
function setProgress(p) { // p = number from 0 to 1
const currentWindow = remote.getCurrentWindow();
currentWindow.setProgressBar(p);
}
const { remote } = require("electron"); // <- The Node.js require() function is
// added to JavaScript by electron
function fullscreen(f) { // p = false or true
const currentWindow = remote.getCurrentWindow();
currentWindow.maximize();
}
require("electron")
:
main.js: const electron = require("electron");
index.html: const electron = require("electron").remote;