Différences entre les versions de « MediaWiki:Common.js »
Aller à la navigation
Aller à la recherche
Ligne 3 : | Ligne 3 : | ||
var a = $("#bodyContent").text(); | var a = $("#bodyContent").text(); | ||
var wCount = a.split(" ").length; | var wCount = a.split(" ").length; | ||
var timeInMinutes = Math.round(Math.floor(wCount / 200 | var timeInMinutes = Math.round(Math.floor(wCount / 200) + 0.5); | ||
var $wordOutput = $( "<p>" + timeInMinutes + " min de lecture" + "</p>").css("font-size", "normal"); | var $wordOutput = $( "<p>" + timeInMinutes + " min de lecture" + "</p>").css("font-size", "normal"); | ||
$( "#bodyContent" ).prepend($wordOutput); | $( "#bodyContent" ).prepend($wordOutput); |
Version du 13 septembre 2022 à 12:20
/* pour afficher le temps de lecture */
var a = $("#bodyContent").text();
var wCount = a.split(" ").length;
var timeInMinutes = Math.round(Math.floor(wCount / 200) + 0.5);
var $wordOutput = $( "<p>" + timeInMinutes + " min de lecture" + "</p>").css("font-size", "normal");
$( "#bodyContent" ).prepend($wordOutput);
/* pour activer les pop-ups */
addOnloadHook( function() {
var pops = function( elems ) {
for (var i=0; i<elems.length; i++) {
if ( !(' '+elems[i].className+' ').match( / pops / ) ) continue;
var anchs = elems[i].getElementsByTagName('a');
for (var j=0; j<anchs.length; j++) anchs[j].target = '_blank';
}
};
var bc = document.getElementById('bodyContent');
var tags = ['span', 'div', 'table', 'td', 'th'];
for (var i=0; i<tags.length; i++) pops( bc.getElementsByTagName( tags[i] ) );
} );