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() {