Fix home page navigation not working
authorJacob Casper <dev@jacobcasper.com>
Thu, 18 Nov 2021 18:36:52 +0000 (12:36 -0600)
committerJacob Casper <dev@jacobcasper.com>
Thu, 18 Nov 2021 18:36:52 +0000 (12:36 -0600)
comment selection <tr> are not counted and so scrolling could run off
the end of the home page and require using a mouse.

hnim.js

diff --git a/hnim.js b/hnim.js
index 593d56c..890852d 100644 (file)
--- a/hnim.js
+++ b/hnim.js
@@ -25,7 +25,7 @@
     selectedElement.style.outline = '';
     selectedElement = comment;
     selectedElement.style.outline = '1px dashed black';
-    if (!visible(comment)) {
+    while (!visible(comment)) {
       callback();
     }
   }