From 933278c5f9f74756cc16ad7f86826f3a783e308d Mon Sep 17 00:00:00 2001 From: Kyle <41976328+ImKyle4815@users.noreply.github.com> Date: Wed, 8 Apr 2020 15:42:42 -0700 Subject: [PATCH] box --- boxGenerator.html | 8 ++++---- data/site/other/boxGenerator/boxGenerator.js | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/boxGenerator.html b/boxGenerator.html index 46c3ec45..56263608 100644 --- a/boxGenerator.html +++ b/boxGenerator.html @@ -22,8 +22,8 @@ Material thickness: - Number of rows: - + Row length (interior): Card width (sleeved): @@ -42,12 +42,12 @@
diff --git a/data/site/other/boxGenerator/boxGenerator.js b/data/site/other/boxGenerator/boxGenerator.js index b3f74332..a54ca667 100644 --- a/data/site/other/boxGenerator/boxGenerator.js +++ b/data/site/other/boxGenerator/boxGenerator.js @@ -14,7 +14,7 @@ function generateSVGs() { var ppi = parseInt(document.getElementById('inputPPI').value) var padding = ppi var materialThickness = parseFloat(document.getElementById('inputMaterialThickness').value) * ppi - var rowCount = parseInt(document.getElementById('inputRowCount').value) + var rowCount = 1//parseInt(document.getElementById('inputRowCount').value) var rowLength = parseFloat(document.getElementById('inputRowLength').value) * ppi var cardWidth = parseFloat(document.getElementById('inputCardWidth').value + document.getElementById('inputWiggleRoom').value) * ppi var cardHeight = parseFloat(document.getElementById('inputCardHeight').value + document.getElementById('inputWiggleRoom').value) * ppi