Files
EAU/dist/js/electron-specific.js
2019-03-28 22:03:56 +01:00

10 lines
188 B
JavaScript

"use strick";
const { shell } = require("electron");
$(".browser").click((event) =>
{
if(shell != null)
event.preventDefault();
shell.openExternal(event.target.href);
});