Updates.
h3rald h3rald@h3rald.com
Thu, 23 Apr 2020 22:09:18 +0200
2 files changed,
2 insertions(+),
2 deletions(-)
M
docs/example/assets/js/h3.js
→
docs/example/assets/js/h3.js
@@ -401,7 +401,7 @@ const map = [];
for (let j = 0; j < parent1.children.length; j++) { let found = false; for (let k = 0; k < parent2.children.length; k++) { - if (equal(parent1.children[j], parent2.children[k])) { + if (parent1.children[j].equal(parent2.children[k])) { map.push(k); found = true; break;
M
docs/js/h3.js
→
docs/js/h3.js
@@ -401,7 +401,7 @@ const map = [];
for (let j = 0; j < parent1.children.length; j++) { let found = false; for (let k = 0; k < parent2.children.length; k++) { - if (equal(parent1.children[j], parent2.children[k])) { + if (parent1.children[j].equal(parent2.children[k])) { map.push(k); found = true; break;