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: Unterschied zwischen den Versionen

Aus Ashes of Creation Wiki
Zur Navigation springen Zur Suche springen
Zeile 3: Zeile 3:
 
         var url = $(e.target).find('a').text();
 
         var url = $(e.target).find('a').text();
 
         window.location.href = url;
 
         window.location.href = url;
 +
    });
 +
    $('.gallery.hoverhighlight img[choice]').click(function (e) {
 +
        e.stopPropagation();
 +
        console.log(e.target.getAttribute('src'), e.target.getAttribute('choice'));
 
     });
 
     });
 
});
 
});

Version vom 18. April 2024, 22:44 Uhr

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