Skip to content

Commit

Permalink
Show description
Browse files Browse the repository at this point in the history
  • Loading branch information
Xerbo committed Jul 21, 2022
1 parent 2485f6c commit 0a4a6ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ <h2>Downlinks:</h2>
sat.downlinks.forEach(downlink => {
content += `
<tr>
<td>${downlink.name}</td>
<td title="${downlink.description}">${downlink.name}<td>
<td>${downlink.frequency/1000000 + " MHz"}</td>
<td>${downlink.bandwidth/1000 + " KHz"}</td>
<td>${downlink.polarization}</td>
Expand All @@ -133,7 +133,7 @@ <h2>Downlinks:</h2>
</tr>`;
});
content += `
</table>`
</table><p><i>Hover over name to view description</i></p>`
document.querySelector("main").innerHTML = content;
return;
}
Expand Down

0 comments on commit 0a4a6ec

Please sign in to comment.