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!

Différences entre les versions de « MediaWiki:Common.js »

De Ashes of Creation Wiki
Sauter à la navigation Sauter à la recherche
Ligne 12 : Ligne 12 :
 
         e.preventDefault();
 
         e.preventDefault();
 
         e.stopPropagation();
 
         e.stopPropagation();
         var url = $(e.target).parents('a').first().attr('href');
+
         var url = $(e.target).parents('a').first().attr('href').match(/"(.*?)"/)?.[1];
 
         console.log(url);
 
         console.log(url);
 
         return false;
 
         return false;
 
     });
 
     });
 
});
 
});

Version du 19 avril 2024 à 11:27

$(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 a').off('click').click(function (e) {
        e.preventDefault();
        e.stopPropagation();
        var url = $(e.target).parents('a').first().attr('href').match(/"(.*?)"/)?.[1];
        console.log(url);
        return false;
    });
});