MtF-wiki/assets/customize.js

11 lines
335 B
JavaScript
Raw Normal View History

2022-02-09 00:51:38 +08:00
document.querySelectorAll("a[href]").forEach((link) => {
2021-12-25 10:55:57 +08:00
if (!/^https?:$/.test(link.protocol)) return;
2021-12-25 06:56:39 +08:00
if (link.hostname === location.hostname) return;
2022-02-09 00:51:38 +08:00
link.target = "_blank";
2021-12-25 06:56:39 +08:00
});
2022-02-09 00:51:38 +08:00
document.querySelectorAll("a[data-email]").forEach((element) => {
2021-12-25 06:56:39 +08:00
element.href = atob(element.dataset.email);
delete element.dataset.email;
2021-12-24 18:12:54 +08:00
});