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!

Diferencia entre revisiones de «MediaWiki:Common.js»

De Ashes of Creation Wiki
Ir a la navegación Ir a la búsqueda
(Undo revision 115944 by Lex (talk))
Etiqueta: Deshacer
Línea 3: Línea 3:
 
         var url = $(e.target).find('a').text();
 
         var url = $(e.target).find('a').text();
 
         window.location.href = url;
 
         window.location.href = url;
 +
    });
 +
    $('.gallery.hoverhighlight a:has(img[link])').removeClass('image').off('click').click(function (e) {
 +
        e.preventDefault();
 +
        var url = $(e.target).find('img').first().attr('link');
 +
        console.log(url);
 +
        window.location.href = url;
 +
        return false;
 
     });
 
     });
 
});
 
});

Revisión del 05:18 19 abr 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();
        var url = $(e.target).find('img').first().attr('link');
        console.log(url);
        window.location.href = url;
        return false;
    });
});