mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 15:04:45 +00:00
bugfix 14
This commit is contained in:
parent
3eef220768
commit
19015d79e6
@ -309,11 +309,11 @@ function updateForm(locString, teamNum, competition) {
|
|||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
function dec(id) {
|
function dec(id) {
|
||||||
document.getElementById(id).innerHTML = (parseInt(document.getElementById(id).innerHTML) - 1).toString()
|
document.getElementById(id).textContent = (parseInt(document.getElementById(id).textContent) - 1).toString()
|
||||||
}
|
}
|
||||||
|
|
||||||
function inc(id) {
|
function inc(id) {
|
||||||
document.getElementById(id).innerHTML = (parseInt(document.getElementById(id).innerHTML) + 1).toString()
|
document.getElementById(id).textContent = (parseInt(document.getElementById(id).textContent) + 1).toString()
|
||||||
}
|
}
|
||||||
|
|
||||||
function subReport() {
|
function subReport() {
|
||||||
|
Loading…
Reference in New Issue
Block a user