« MediaWiki:Common.js » : différence entre les versions
De Mouvement Arbre-Évolution
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 33 : | Ligne 33 : | ||
}); | }); | ||
//click item if url contains _display | //click item if url contains _display | ||
if(window.location.attr('hash') == "carbone" ) { | if(window.location.attr('hash') == "carbone" ) { | ||
setTimeout(function() { | setTimeout(function() { | ||
$("#carbone-tab"). | $("#carbone-tab").click(); | ||
},1000); | },1000); | ||
} | } | ||
}); | }); |
Version du 5 décembre 2024 à 16:30
/* 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 () {
$('.versPartenaire').click(function() {
var URL = $(this).attr("title");
window.open(URL,'_self','','');
});
$('.versExtérieur').click(function() {
var URL = $(this).attr("href");
window.open(URL,'_blank','','');
});
$(".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);
},
}
);
});
//click item if url contains _display
if(window.location.attr('hash') == "carbone" ) {
setTimeout(function() {
$("#carbone-tab").click();
},1000);
}
});