diff options
author | cyfraeviolae <cyfraeviolae> | 2022-02-26 01:02:44 -0500 |
---|---|---|
committer | cyfraeviolae <cyfraeviolae> | 2022-02-26 01:02:44 -0500 |
commit | 04133a424cde34fbce3978e538f8db105cadbe9f (patch) | |
tree | 67f62c2b29d37ff25b115e8b264104e2e83559cb /static | |
parent | 2e3e6d8cbf5b32be8410437af9379b7f336f7884 (diff) |
focus
Diffstat (limited to 'static')
-rw-r--r-- | static/script.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/script.js b/static/script.js index 37c5725..2516256 100644 --- a/static/script.js +++ b/static/script.js @@ -192,8 +192,8 @@ document.addEventListener('keydown', function(e) { }) document.addEventListener('mousedown', function(e) { - console.log('click', e.target) if (Array.from(e.target.classList).includes('entrybox')) { + e.preventDefault(); unfocus(document.querySelector(`[data-offset="${focused}"]`)); focus(e.target); } |