1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-07-19 22:18:03 +00:00

About dialog

This commit is contained in:
2023-05-29 22:09:09 +02:00
parent b22734d6d1
commit c252b57655
5 changed files with 87 additions and 60 deletions

View File

@ -0,0 +1,8 @@
import { BrowserOpenURL } from '$wails/runtime/runtime';
export default function alink(node) {
node.addEventListener('click', e => {
e.preventDefault();
BrowserOpenURL(node.href);
});
}