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
اذهب إلى التنقل اذهب إلى البحث
سطر ١٢: سطر ١٢:
 
         e.preventDefault();
 
         e.preventDefault();
 
         e.stopPropagation();
 
         e.stopPropagation();
 +
        var url = $(e.target).attr('href');
 
         console.log(url);
 
         console.log(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();
        e.stopPropagation();
        return false;
    });
    $('.gallery.hoverhighlight a').off('click').click(function (e) {
        e.preventDefault();
        e.stopPropagation();
        var url = $(e.target).attr('href');
        console.log(url);
        return false;
    });
});