Core

/client/src/link.ts (287 B)

 1
2
3
4
5
6
7
8
9
10
11
12
13
import {els} from "./dom";

export function linkInit() {
for (const el of els(".link-confirm")) {
el.onclick = () => {
let msg = el.dataset.message as string;
if (msg && msg.length === 0) {
msg = "Are you sure?";
}
return confirm(msg);
};
}
}