diff options
Diffstat (limited to 'ext/content.js')
-rw-r--r-- | ext/content.js | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/ext/content.js b/ext/content.js index 4938805f..c36b7381 100644 --- a/ext/content.js +++ b/ext/content.js @@ -16,6 +16,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ + function getRangeAtCursor(e, lookAhead) { const range = document.caretRangeFromPoint(e.clientX, e.clientY); if (range === null) { @@ -36,6 +37,8 @@ function getRangeAtCursor(e, lookAhead) { function onMouseDown(e) { + e.preventDefault(); + const range = getRangeAtCursor(e, 20); if (range === null) { return; @@ -45,11 +48,9 @@ function onMouseDown(e) { selection.removeAllRanges(); selection.addRange(range); - e.preventDefault(); - - console.log(range.toString()); + findTerm(range.toString(), response => { + console.log(response); + }); } - - -// window.addEventListener('mousedown', onMouseDown, false); +window.addEventListener('mousedown', onMouseDown, false); |