projects
/
hnim.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b35a92e
)
Fix home page navigation not working
author
Jacob Casper
<dev@jacobcasper.com>
Thu, 18 Nov 2021 18:36:52 +0000
(12:36 -0600)
committer
Jacob 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
patch
|
blob
|
blame
|
history
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();
}
}