Overview
Comment:Fix JS
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 7771acfe3dfba724ea0d81423401117cc0206adc
User & Date: bohwaz on 2020-12-08 23:54:52
Other Links: manifest | tags
Context
2020-12-08
23:59
Try to fix home check-in: 21c13fad0c user: bohwaz tags: trunk
23:54
Fix JS check-in: 7771acfe3d user: bohwaz tags: trunk
23:53
Homepage check-in: 1a2d668846 user: bohwaz tags: trunk
Changes

Modified doc/index.md from [1eb290e89d] to [f99b148d70].

142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
		if (days < 31) {
			time = Math.ceil(days) + ' jours';
		}
		else if (days >= 31) {
			time = Math.round(days / 30.5) + ' mois';
		}

		document.querySelector('#download').innerHTML += `
			<li><h3>Dernière version : ${last}</h3></li>
			<li><em>il y a ${days}</em></li>
			<li><a href="./wiki/?name=Changelog">Nouveautés</a></li>
			<li><a href="./uv/${selected.name}">Télécharger</a></li>`;
	});
});
</script>







|
<






142
143
144
145
146
147
148
149

150
151
152
153
154
155
		if (days < 31) {
			time = Math.ceil(days) + ' jours';
		}
		else if (days >= 31) {
			time = Math.round(days / 30.5) + ' mois';
		}

		document.querySelector('#download').innerHTML += `<li><h3>Dernière version : ${last}</h3></li>

			<li><em>il y a ${days}</em></li>
			<li><a href="./wiki/?name=Changelog">Nouveautés</a></li>
			<li><a href="./uv/${selected.name}">Télécharger</a></li>`;
	});
});
</script>