« MediaWiki:Common.js » : différence entre les versions
De Mouvement Arbre-Évolution
Aucun résumé des modifications |
Aucun résumé des modifications |
||
(39 versions intermédiaires par le même utilisateur non affichées) | |||
Ligne 2 : | Ligne 2 : | ||
importScript('MediaWiki:DataTables.js'); | importScript('MediaWiki:DataTables.js'); | ||
importScript('MediaWiki:Carrousel.js'); | importScript('MediaWiki:Carrousel.js'); | ||
importScript('MediaWiki:CarboneRiverain.js'); | |||
$(document).ready( | $(document).ready(function () { | ||
$(". | |||
$('span#RedirectionPancarte2 a')[0].click(function (event) { | |||
event.preventDefault(); | |||
var href2 = $(this).attr('href'); | |||
console.log(href2); | |||
window.location= href2; | |||
}); | |||
}); | |||
$(document).ready(function () { | |||
$('.fusa-cr').click(function() { | |||
var URL = "https://carboneriverain.org/fusa-cr/"; | |||
window.open(URL,'_blank','',''); | |||
}); | |||
$('.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) | $(this) | ||
.prop("Counter", 0) | .prop("Counter", 0) | ||
Ligne 20 : | Ligne 48 : | ||
} | } | ||
); | ); | ||
}) | }); | ||
}); | |||
); | $(document).ready(function () { | ||
var url = window.location; | |||
console.log (url); | |||
if (url === "https://arbre-evolution.org/index.php/Programmes#carbone") { | |||
console.log ('OK'); | |||
$('#ongletsProgrammes #carbone-tab').tab('show'); | |||
} | |||
} ); |
Dernière version du 17 mars 2025 à 11:03
/* Tout JavaScript présent ici sera exécuté par tous les utilisateurs à chaque chargement de page. */
importScript('MediaWiki:DataTables.js');
importScript('MediaWiki:Carrousel.js');
importScript('MediaWiki:CarboneRiverain.js');
$(document).ready(function () {
$('span#RedirectionPancarte2 a')[0].click(function (event) {
event.preventDefault();
var href2 = $(this).attr('href');
console.log(href2);
window.location= href2;
});
});
$(document).ready(function () {
$('.fusa-cr').click(function() {
var URL = "https://carboneriverain.org/fusa-cr/";
window.open(URL,'_blank','','');
});
$('.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);
},
}
);
});
});
$(document).ready(function () {
var url = window.location;
console.log (url);
if (url === "https://arbre-evolution.org/index.php/Programmes#carbone") {
console.log ('OK');
$('#ongletsProgrammes #carbone-tab').tab('show');
}
} );