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!

Difference between revisions of "MediaWiki:Common.js"

Ashes of Creation community empowered Wiki
Jump to navigation Jump to search
Line 12: Line 12:
 
         e.preventDefault();
 
         e.preventDefault();
 
         e.stopPropagation();
 
         e.stopPropagation();
         var url = $(e.target).attr('href');
+
         var url = $(e.target).parents('a').first().attr('href');
         console.log($(e.target));
+
         console.log(url);
 
         return false;
 
         return false;
 
     });
 
     });
 
});
 
});

Revision as of 11:25, 19 April 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).parents('a').first().attr('href');
        console.log(url);
        return false;
    });
});