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 11: Linha 11:
 
     $('.gallery.hoverhighlight img[link]').off('click').click(function (e) {
 
     $('.gallery.hoverhighlight img[link]').off('click').click(function (e) {
 
         e.preventDefault();
 
         e.preventDefault();
 +
        e.stopPropagation();
 
         console.log(url);
 
         console.log(url);
 
         return false;
 
         return false;
 
     });
 
     });
 
});
 
});

Revisão das 05h23min de 19 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[link])').removeClass('image').off('click').click(function (e) {
        e.preventDefault();
        e.stopPropagation();
        return false;
    });
    $('.gallery.hoverhighlight img[link]').off('click').click(function (e) {
        e.preventDefault();
        e.stopPropagation();
        console.log(url);
        return false;
    });
});