mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 06:54:44 +00:00
bugfix 14
This commit is contained in:
parent
3eef220768
commit
19015d79e6
@ -161,7 +161,7 @@ function cseries(seriesName) {
|
||||
processAndAppendReturn(doc.data())
|
||||
}
|
||||
document.getElementById('FormData').innerHTML += "</div>";
|
||||
}).then(function () {
|
||||
}).then(function() {
|
||||
document.getElementById('FormData').innerHTML += "<input type='button' onclick=subReport() value='Submit'>";
|
||||
});
|
||||
});
|
||||
@ -193,7 +193,7 @@ function cseries(seriesName) {
|
||||
processAndAppendReturn(doc.data())
|
||||
}
|
||||
document.getElementById('FormData').innerHTML += "</div>";
|
||||
}).then(function () {
|
||||
}).then(function() {
|
||||
document.getElementById('FormData').innerHTML += "<input type='button' onclick=subReport() value='Submit'>";
|
||||
});
|
||||
});
|
||||
@ -309,11 +309,11 @@ function updateForm(locString, teamNum, competition) {
|
||||
}
|
||||
*/
|
||||
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) {
|
||||
document.getElementById(id).innerHTML = (parseInt(document.getElementById(id).innerHTML) + 1).toString()
|
||||
document.getElementById(id).textContent = (parseInt(document.getElementById(id).textContent) + 1).toString()
|
||||
}
|
||||
|
||||
function subReport() {
|
||||
|
Loading…
Reference in New Issue
Block a user