all repos — h3 @ 70209a2cd7756c72b065050561d7c9901a996a96

A tiny, extremely minimalist JavaScript microframework.

Updates.
h3rald h3rald@h3rald.com
Thu, 23 Apr 2020 22:09:18 +0200
commit

70209a2cd7756c72b065050561d7c9901a996a96

parent

8eb168ab35f55e4f16f7dd18b8e9c36f8d6b12e3

2 files changed, 2 insertions(+), 2 deletions(-)

jump to
M docs/example/assets/js/h3.jsdocs/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.jsdocs/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;