CoolFace
Apppublic

Mythus/Staging

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
preload.js16 linesDownload Raw Back to electron
1const { BrowserWindow } = require("@electron/remote");2 3window.addEventListener("DOMContentLoaded", () => {4  // Print function5  document.getElementById("print_button").addEventListener("click", () => {6    const url = document.querySelector("webview").getAttribute("src");7 8    let printWindow = new BrowserWindow({ "auto-hide-menu-bar": true });9    printWindow.loadURL(url);10 11    printWindow.webContents.on("did-finish-load", () => {12      printWindow.webContents.print();13    });14  });15});16