diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-04-06 16:00:17 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-04-06 16:00:17 -0300 |
commit | 009df4629395c8ee9db8cedb7fb79ead7c12922f (patch) | |
tree | ff6a4c4fbcde09081ffa7be03f6c0f6447b01f29 /src | |
parent | 56a47bb97bee2b1bab8119d9deeb73b7c5b37dc8 (diff) |
client: additional-names-box: ternary fix
Sigh
Diffstat (limited to 'src')
-rw-r--r-- | src/static/js/client/additional-names-box.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/static/js/client/additional-names-box.js b/src/static/js/client/additional-names-box.js index 7c1baef6..3535a0e5 100644 --- a/src/static/js/client/additional-names-box.js +++ b/src/static/js/client/additional-names-box.js @@ -119,7 +119,7 @@ function handleAdditionalNamesBoxLinkClicked(domEvent) { ? top > 0.7 * window.innerHeight : height && !boxFitsInFrame ? top > 0.4 * window.innerHeight - ? top > 0.5 * window.innerHeight) || + : top > 0.5 * window.innerHeight) || (bottom && bottomFitsInFrame ? bottom > window.innerHeight - 20 |