Fix pinouts (#2726)

* move addRow call

* undo submo bump
This commit is contained in:
David Holdeman 2021-05-20 16:44:19 -05:00 committed by GitHub
parent 20cef63d32
commit 6c88bafcf4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -67,6 +67,7 @@ window.addEventListener('load', function() {
break;
}
}
addRow(fullTable, connector.pins[i], pdiv);
if (!pinfo.x) continue;
var closest = 1000000;
for (var ii = 0; ii < connector.info.pins.length; ii++) {
@ -102,7 +103,6 @@ window.addEventListener('load', function() {
pdiv.style.marginLeft = "-" + (width / 2) + "%";
pdiv.style.fontSize = (height / 7.5) + "vw";
cdiv.appendChild(pdiv);
addRow(fullTable, connector.pins[i], pdiv);
}
}.bind(null, connector, sdiv, img));
img.src = connector.info.image.file;