diff --git a/index.html b/index.html index 9b1d5b9..c2ddf5b 100644 --- a/index.html +++ b/index.html @@ -22,7 +22,7 @@
| Sheet Size: | @@ -36,7 +36,7 @@ | |||
| Boxes: | × | @@ -44,7 +44,7 @@|||
| Box size: | cm | Use ratio | ||
| Box ratio: | @@ -70,7 +70,7 @@ | |||
| Box margin: | cm | Sheet padding | ||
| Sheet padding: | { + constants.papers.forEach(s => { self.sheets.push({ title: `${s.title} (${s.w}×${s.h}cm)`, w: s.w, h: s.h }); }); - data.papers.forEach(s => { + constants.papers.forEach(s => { self.sheets.push({ title: `${s.title} landscape (${s.h}×${s.w}cm)`, w: s.h, h: s.w }); }); - data.ratios.forEach(r => { + constants.ratios.forEach(r => { self.ratios.push({ title: `${r.rw}:${r.rh}`, rw: r.rw, |