This repository has been archived on 2026-05-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blowfish/assets/js/email.js
T
2026-02-25 23:13:16 +08:00

13 lines
369 B
JavaScript

(function () {
const links = document.querySelectorAll(".email-link");
links.forEach((link) => {
const email = atob(link.getAttribute("data-email"));
const subject = link.getAttribute("data-subject");
let mailto = "mailto:" + email;
if (subject) {
mailto += "?subject=" + encodeURIComponent(subject);
}
link.href = mailto;
});
})();