all repos — h3 @ 268fa6e9125658fede7d381cdd8a009e0db18746

A tiny, extremely minimalist JavaScript microframework.

Minor changes.
h3rald h3rald@h3rald.com
Thu, 23 Apr 2020 22:04:25 +0200
commit

268fa6e9125658fede7d381cdd8a009e0db18746

parent

99d1cf241d5e05e0aa19254428cbd53430d211df

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

jump to
M h3.jsh3.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;