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!

Diferenças entre edições de "MediaWiki:Common.js"

Fonte: Ashes of Creation Wiki
Saltar para a navegação Saltar para a pesquisa
Linha 4: Linha 4:
 
         window.location.href = url;
 
         window.location.href = url;
 
     });
 
     });
     $('.gallery.hoverhighlight img[choice]').click(function (e) {
+
     $('.gallery.hoverhighlight a:has(img[choice])').click(function (e) {
 
         e.stopPropagation();
 
         e.stopPropagation();
 
         console.log(e.target.getAttribute('src'), e.target.getAttribute('choice'));
 
         console.log(e.target.getAttribute('src'), e.target.getAttribute('choice'));

Revisão das 22h47min de 18 de abril de 2024

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