From 3fd42c46c958a3cfcdd2c8110fa28e31ce75ecfe Mon Sep 17 00:00:00 2001 From: Jacob Levine Date: Fri, 22 Mar 2019 00:08:00 -0500 Subject: [PATCH] bugfix 15 --- website/public/scout/scripts.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/public/scout/scripts.js b/website/public/scout/scripts.js index 6750458a..5488cb3e 100644 --- a/website/public/scout/scripts.js +++ b/website/public/scout/scripts.js @@ -309,11 +309,11 @@ function updateForm(locString, teamNum, competition) { } */ function dec(id) { - document.getElementById(id).textContent = (parseInt(document.getElementById(id).textContent) - 1).toString() + document.getElementById(id).innerHTML = ""+(parseInt(document.getElementById(id).textContent) - 1).toString()+"" } function inc(id) { - document.getElementById(id).textContent = (parseInt(document.getElementById(id).textContent) + 1).toString() + document.getElementById(id).innerHTML = ""+(parseInt(document.getElementById(id).textContent) + 1).toString()+"" } function subReport() {