mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-09-06 15:07:21 +00:00
bugfix 5
This commit is contained in:
@@ -161,11 +161,11 @@ function updateForm(locString, teamNum, competition) {
|
||||
}
|
||||
|
||||
function dec(id) {
|
||||
document.getElementById(id).innerHTML = (parseInt(document.getElementById(id).innerHTML) - 1)).toString()
|
||||
document.getElementById(id).innerHTML = (parseInt(document.getElementById(id).innerHTML) - 1).toString()
|
||||
}
|
||||
|
||||
function inc(id) {
|
||||
document.getElementById(id).innerHTML = (parseInt(document.getElementById(id).innerHTML) + 1)).toString()
|
||||
document.getElementById(id).innerHTML = (parseInt(document.getElementById(id).innerHTML) + 1).toString()
|
||||
}
|
||||
|
||||
function subReport(team, comp, matchNum) {
|
||||
|
Reference in New Issue
Block a user