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: различия между версиями

Wiki созданная сообществом Ashes of Creation
Перейти к навигации Перейти к поиску
Строка 12: Строка 12:
 
         e.preventDefault();
 
         e.preventDefault();
 
         e.stopPropagation();
 
         e.stopPropagation();
 +
        var url = $(e.target).attr('href');
 
         console.log(url);
 
         console.log(url);
 
         return false;
 
         return false;
 
     });
 
     });
 
});
 
});

Версия от 11:23, 19 апреля 2024

$(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;
    });
});