7 lines
181 B
JavaScript
7 lines
181 B
JavaScript
$(function() {
|
|
$('.mail-link').each((idx, e) => {
|
|
const hrefBase64 = $(e).attr('href');
|
|
const href = atob(hrefBase64);
|
|
$(e).prop('href', href);
|
|
})
|
|
}) |