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 7 : Ligne 7 :
 
         e.stopPropagation();
 
         e.stopPropagation();
 
         console.log(e.target.getAttribute('src'), e.target.getAttribute('alt'));
 
         console.log(e.target.getAttribute('src'), e.target.getAttribute('alt'));
 +
        window.parent.postMessage({message: e.target.getAttribute('alt')}, 'http://localhost/');
 
         return false;
 
         return false;
 
     });
 
     });
 
});
 
});

Version du 18 avril 2024 à 23:02

$(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])').removeClass('image').off('click').click(function (e) {
        e.stopPropagation();
        console.log(e.target.getAttribute('src'), e.target.getAttribute('alt'));
        window.parent.postMessage({message: e.target.getAttribute('alt')}, 'http://localhost/');
        return false;
    });
});