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»

من Ashes of Creation Wiki
اذهب إلى التنقل اذهب إلى البحث
(Undo revision 115944 by Lex (talk))
وسم: رجوع
سطر ٦: سطر ٦:
 
     $('.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) {
 
         e.preventDefault();
 
         e.preventDefault();
         var url = $(e.target).find('img').first().attr('link');
+
         return false;
 +
    });
 +
    $('.gallery.hoverhighlight img[link]').off('click').click(function (e) {
 +
        e.preventDefault();
 
         console.log(url);
 
         console.log(url);
        window.location.href = url;
 
 
         return false;
 
         return false;
 
     });
 
     });
 
});
 
});

مراجعة ٠٥:٢١، ١٩ أبريل ٢٠٢٤

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