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
3. sor: 3. sor:
 
         var url = $(e.target).find('a').text();
 
         var url = $(e.target).find('a').text();
 
         window.location.href = url;
 
         window.location.href = url;
    });
 
    $('.gallery video:not([controls]).mediatest').click(function (e) {
 
e.preventDefault();
 
e.stopPropagation();
 
var html = $(e.target).parent().html();
 
console.log(html);
 
$("#content").append(
 
$("<dialog>", { id: "ll-modal", html }).append(
 
$("<div>", { class: "ll-close", html: "⊗" }).click(function (e) {
 
$("#ll-modal")[0].close();
 
                                $("#ll-modal").remove();
 
})
 
)
 
);
 
$("#ll-modal")[0].showModal();
 
 
     });
 
     });
 
     $('.gallery.hoverhighlight a:has(img[link])').removeClass('image').off('click').click(function (e) {
 
     $('.gallery.hoverhighlight a:has(img[link])').removeClass('image').off('click').click(function (e) {

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

$(function () {
    $('.gallery video:not([controls]):not(.mediatest)').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 a').off('click').click(function (e) {
        e.preventDefault();
        e.stopPropagation();
        var url = decodeURI($(e.target).parents('a').first().attr('href'));
        if(!url) return false;
        var matches = url.match(/"(.*?)"/);
        if(matches)
           window.location.href = matches[1];
        return false;
    });
});