Minor pinout table improvements (#2846)

* try to fix table width

* try here
This commit is contained in:
David Holdeman 2021-06-22 18:13:44 -05:00 committed by GitHub
parent a8e6078f04
commit 4d6b2783f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -32,7 +32,7 @@ function addRow(table, pin, pdiv) {
var cells = row.children;
for (var i = 0; i < cells.length; i++) {
var cell = cells[i];
cell.textContent = pin[cell.dataset.field];
cell.textContent = Array.isArray(pin[cell.dataset.field]) ? pin[cell.dataset.field].join(", ") : pin[cell.dataset.field];
}
clone.querySelector(".pin-data").dataset.type = pin.type;
if (pdiv) {
@ -43,6 +43,7 @@ function addRow(table, pin, pdiv) {
}
table.appendChild(clone);
}
function clickPin(table, pin, pdiv) {
table.parentElement.style.display = "table";
table.innerHTML = "";

View File

@ -148,7 +148,8 @@ table {
@media (max-width: 1000px) {
table {
font-size: 3rem;
word-wrap: break-word;
font-size: 2.5rem;
}
}