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 12: Zeile 12:
 
         e.preventDefault();
 
         e.preventDefault();
 
         e.stopPropagation();
 
         e.stopPropagation();
         console.log($(e.target).parents('a').first().attr('href').match(/"(.*?)"/));
+
         console.log($(e.target).parents('a').first().attr('href'));
 
         return false;
 
         return false;
 
     });
 
     });
 
});
 
});

Version vom 19. April 2024, 11:29 Uhr

$(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();
        console.log($(e.target).parents('a').first().attr('href'));
        return false;
    });
});