diff options
Diffstat (limited to 'ext/client.js')
| -rw-r--r-- | ext/client.js | 10 | 
1 files changed, 9 insertions, 1 deletions
diff --git a/ext/client.js b/ext/client.js index 803f7db6..85a4ba64 100644 --- a/ext/client.js +++ b/ext/client.js @@ -48,7 +48,15 @@ class Client {              return;          } -        this.showPopup(range); +        findTerm(range.toString(), ({results, length}) => { +            if (length === 0) { +                this.hidePopup(); +            } else { +                range.setEnd(range.endContainer, range.startOffset + length); +                this.popup.html(renderDefs(results.slice(0, 5))); +                this.showPopup(range); +            } +        });      }      onMessage(request, sender, callback) {  |