14 lines
250 B
JavaScript
14 lines
250 B
JavaScript
const {ipcRenderer} = require("electron");
|
|
|
|
class About {
|
|
constructor() {}
|
|
|
|
renderAbout() {
|
|
EthoMainGUI.renderTemplate("about.html", {});
|
|
$(document).trigger("render_about");
|
|
}
|
|
}
|
|
|
|
// create new uploads variable
|
|
EthoAbout = new About();
|