« MediaWiki:Common.js » : différence entre les versions
De Mouvement Arbre-Évolution
Aucun résumé des modifications Balise : Révoqué |
Aucun résumé des modifications Balise : Révocation manuelle |
||
Ligne 9 : | Ligne 9 : | ||
console.log(href2); | console.log(href2); | ||
window.location= href2; | window.location= href2; | ||
}) | |||
}); | }); | ||
}); | |||
$(".compteur").each(function () { | |||
$(this) | |||
.prop("Counter", 0) | |||
.animate( | |||
{ | |||
Counter: $(this).text(), | |||
}, | |||
{ | |||
duration: 4000, | |||
easing: "swing", | |||
step: function (now) { | |||
now = Number(Math.ceil(now)).toLocaleString('en'); | |||
$(this).text(now); | |||
}, | |||
} | |||
); | |||
}) |
Version du 16 octobre 2024 à 10:19
/* Tout JavaScript présent ici sera exécuté par tous les utilisateurs à chaque chargement de page. */
importScript('MediaWiki:DataTables.js');
importScript('MediaWiki:Carrousel.js');
$(document).ready(function () {
$('span#RedirectionPancarte a')[0].click(function (event) {
event.preventDefault();
var href2 = $(this).attr('href');
console.log(href2);
window.location= href2;
})
});
$(".compteur").each(function () {
$(this)
.prop("Counter", 0)
.animate(
{
Counter: $(this).text(),
},
{
duration: 4000,
easing: "swing",
step: function (now) {
now = Number(Math.ceil(now)).toLocaleString('en');
$(this).text(now);
},
}
);
})