Nuovi bottoni, fix vecchie pagine, aggiornamento Raccolta siti web

This commit is contained in:
2024-08-29 00:17:05 +02:00
parent 057750938f
commit 724bf1eb45
75 changed files with 593 additions and 316 deletions

View File

@@ -0,0 +1,6 @@
if (!String.prototype.replaceAll) {
// https://stackoverflow.com/a/63958411
String.prototype.replaceAll = function replaceAll(search, replace) {
return this.split(search).join(replace);
};
};