Kochbuch Editor

Kochbuch Editor

Rezepte: 0 | V3: 0 | Zeit: 0 | Bild: 0 | Kategorie: 0
Filter:

Name Kategorie V3 Zeit Bild

bilder auf 347 für console 

var dbFix = JSON.parse(localStorage.getItem("kochbuchDB") || "{}");

var count = 0;

for (var key in dbFix) {

if (dbFix[key].img && dbFix[key].img.includes("width=")) {

dbFix[key].img = dbFix[key].img.replace(/width=\d+/, "width=347");
count++;

}

}

localStorage.setItem("kochbuchDB", JSON.stringify(dbFix));

console.log("Bilder angepasst:", count);