Glorious Wiki readers. We are adding the Midnight Magic video and livestream to the wiki. We appreciate your patience as we process the new and updated information!

„MediaWiki:Common.js” változatai közötti eltérés

Innen: Ashes of Creation Wiki
Ugrás a navigációhoz Ugrás a kereséshez
7. sor: 7. sor:
 
         e.stopPropagation();
 
         e.stopPropagation();
 
         console.log(e.target.getAttribute('src'), e.target.getAttribute('alt'));
 
         console.log(e.target.getAttribute('src'), e.target.getAttribute('alt'));
         return true;
+
         return false;
 
     });
 
     });
 
});
 
});

A lap 2024. április 18., 22:53-kori változata

$(function () {
    $('.gallery video:not([controls])').click(function (e) {
        var url = $(e.target).find('a').text();
        window.location.href = url;
    });
    $('.gallery.hoverhighlight a:has(img[alt])').click(function (e) {
        e.stopPropagation();
        console.log(e.target.getAttribute('src'), e.target.getAttribute('alt'));
        return false;
    });
});