Protection of mail addresses using base64 encoding

This commit is contained in:
2024-11-08 09:44:37 +01:00
parent d87e25a29a
commit ca26d66b84
21 changed files with 36 additions and 22 deletions

View File

@@ -0,0 +1,7 @@
$(function() {
$('.mail-link').each((idx, e) => {
const hrefBase64 = $(e).attr('href');
const href = atob(hrefBase64);
$(e).prop('href', href);
})
})