mirror of
https://github.com/zoriya/EAU.git
synced 2026-06-03 02:51:55 +00:00
10 lines
188 B
JavaScript
10 lines
188 B
JavaScript
"use strick";
|
|
const { shell } = require("electron");
|
|
|
|
$(".browser").click((event) =>
|
|
{
|
|
if(shell != null)
|
|
event.preventDefault();
|
|
|
|
shell.openExternal(event.target.href);
|
|
}); |