does-it-build/static/index.js
Noratrieb f6fac25c6f Remove old link and show number of builds
In the users locale of course. Without any annoying Accept-Language
parsing or anything like that, just with the beauty of JavaScript.
2025-07-04 22:06:40 +02:00

4 lines
238 B
JavaScript

// Do some fancy number formatting in your locale, so you can't blame me if the numbers look ass.
document.querySelectorAll(".number").forEach((elem) => {
elem.textContent = new Intl.NumberFormat().format(Number(elem.textContent));
});