showSearchLoading();
runSearch();
}
-})
\ No newline at end of file
+});
+
+
+// Email display
+const emailDisplayLinks = document.querySelectorAll('a.email-display');
+const eb64 = 'ZW1haWxAYm9v' + 'a3N0YWNrYXBwLmNvbQ==';
+for (const link of emailDisplayLinks) {
+ const email = atob(eb64);
+ link.addEventListener('click', e => {
+ e.preventDefault();
+ e.target.textContent = email;
+ e.target.href = 'mailto:' + email;
+ });
+}
\ No newline at end of file