diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-10-12 14:55:18 -0400 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-10-12 15:31:29 -0400 |
commit | 6da76835524fbf6b95902f06822d77c54ccf735b (patch) | |
tree | 89b479b925e0bb48a89258710c442dac407a3fd7 /ext/bg | |
parent | a5b208fb895d46793223910451d177dc53d9463a (diff) |
Don't pass options around for calls to termsShow, kanjiShow, etc.
Diffstat (limited to 'ext/bg')
-rw-r--r-- | ext/bg/js/search.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/bg/js/search.js b/ext/bg/js/search.js index 7a8fdf5e..80519f4a 100644 --- a/ext/bg/js/search.js +++ b/ext/bg/js/search.js @@ -103,7 +103,11 @@ class DisplaySearch extends Display { this.updateSearchButton(); if (valid) { const {definitions} = await apiTermsFind(query, this.optionsContext); - this.termsShow(definitions, this.options); + this.termsShow(definitions, { + focus: false, + sentence: null, + url: window.location.href + }); } else { this.container.textContent = ''; } |