Nova-Client/Solar/Launcher/html.js

21 lines
581 B
JavaScript
Raw Permalink Normal View History

2023-03-19 20:32:58 +01:00
(function () {
const remote = require('electron').remote;
function init() {
document.getElementById("close-btn").addEventListener("click", function (e) {
const window = remote.getCurrentWindow();
window.close();
});
document.getElementById("min-btn").addEventListener("click", function (e) {
const window = remote.getCurrentWindow();
window.minimize();
});
};
document.onreadystatechange = function () {
if (document.readyState == "complete") {
init();
}
};
})();