added a new possibility to enable mailgo, with the attribute mailgo in the a element

This commit is contained in:
Matteo Manzinello
2019-05-12 12:23:23 +02:00
parent e735733099
commit ec515f6a06
3 changed files with 9 additions and 8 deletions

View File

@@ -315,8 +315,10 @@ mailgoCheckRender = event => {
!e.classList.contains("no-mailgo")) ||
// second case: the href=#mailgo
(e.href && e.getAttribute("href").toLowerCase() === "#mailgo") ||
//third case: the classList contains mailgo
e.classList.contains("mailgo")
// third case: the classList contains mailgo
e.classList.contains("mailgo") ||
// fourth case: exists the attribute mailgo in the <a> element
!!e.getAttribute("mailgo")
) {
// stop the normal execution of the element click
event.preventDefault();