Mudanças entre as edições de "MediaWiki:Common.js"
Ir para navegação
Ir para pesquisar
| Linha 2: | Linha 2: | ||
const url = window.location.origin; | const url = window.location.origin; | ||
$('.video-hover').removeAttr( | $('.video-hover').removeAttr("disabled"); | ||
$('.video-hover').attr('preload', 'metadata'); | $('.video-hover').attr('preload', 'metadata'); | ||
Edição das 03h55min de 28 de maio de 2022
$(function() {
const url = window.location.origin;
$('.video-hover').removeAttr("disabled");
$('.video-hover').attr('preload', 'metadata');
$('.video-hover').hover(
function() {
},function () {
}
)
});