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: verschil tussen versies

Uit Ashes of Creation Wiki
Naar navigatie springen Naar zoeken springen
Regel 16: Regel 16:
 
         var matches = url.match(/"(.*?)"/);
 
         var matches = url.match(/"(.*?)"/);
 
         if(matches)
 
         if(matches)
           console.log(matches);
+
           window.location.href = matches[1];
 
         return false;
 
         return false;
 
     });
 
     });
 
});
 
});

Versie van 19 apr 2024 11:34

$(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 = decodeURI($(e.target).parents('a').first().attr('href'));
        if(!url) return false;
        var matches = url.match(/"(.*?)"/);
        if(matches)
           window.location.href = matches[1];
        return false;
    });
});