summaryrefslogtreecommitdiffstats
path: root/content/about/email.js
blob: 02f3cee99ee845a79e90b5bbdb465658aedb6d82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
"use strict";

function emailDecode() {
  const emailElement = document.querySelector("code.language-shell");
  const emailB64 = emailElement.textContent.split('"')[1];
  const email = atob(emailB64);
  const mailto = `<a href="mailto:${email}">${email}</a>`;
  emailElement.outerHTML = mailto;
}

const emailElement = document.querySelector("code.language-shell");
emailElement.addEventListener('click', emailDecode);