Change page layout to fit more data

This commit is contained in:
Fred Boniface
2023-06-08 11:13:36 +01:00
parent e7fcb69e4c
commit 41d027ffab
2 changed files with 11 additions and 1 deletions

View File

@@ -63,7 +63,10 @@ async function displayOne(object) {
stopRows += await createPublicStopTableRow(stop)
}
const displayBox = document.getElementById('train_data')
const titleImg = document.getElementById('titleimg')
displayBox.insertAdjacentHTML('beforeend', dataTableHead + stopRows + dataTableClose)
displayBox.style = 'display:block;'
titleImg.style = 'width:150px;height:98px;padding-bottom:0;'
}
async function createPublicStopTableRow(stop) {
@@ -85,4 +88,11 @@ async function createPublicStopTableRow(stop) {
<td id='public_dep'>${public_dep}</td>
</tr>
`
}
async function reset() {
const titleImg = document.getElementById('titleimg')
const displayBox = document.getElementById('train_data')
titleImg.style = ''
displayBox.innerHTML = ''
}