Fix typo
This commit is contained in:
parent
d8d5b6caf6
commit
e0f2dde953
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ function construct_AT(elem, tree) {
|
||||||
resolve_connector(document.getElementById("atree-row-" + i).children[node.display.col]);
|
resolve_connector(document.getElementById("atree-row-" + i).children[node.display.col]);
|
||||||
}
|
}
|
||||||
// connect horizontally
|
// connect horizontally
|
||||||
let left = Math.min(parent_node.display.col, node.display.col);
|
let min = Math.min(parent_node.display.col, node.display.col);
|
||||||
let max = Math.max(parent_node.display.col, node.display.col);
|
let max = Math.max(parent_node.display.col, node.display.col);
|
||||||
for (let i = min + 1; i < max; i++) {
|
for (let i = min + 1; i < max; i++) {
|
||||||
let connector = connect_elem.cloneNode()
|
let connector = connect_elem.cloneNode()
|
||||||
|
|
Loading…
Reference in a new issue