diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-02-10 20:45:01 -0800 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-02-10 20:45:01 -0800 |
commit | 78d5b511278cd9b8f9319220bec55b8628f6cb36 (patch) | |
tree | d5f181b03c28adc06f705c1fa286bfdeaeb55cdf /ext/fg/js/popup.js | |
parent | caa09c63a18a0d5f30fda365c18c0d58235ec7e9 (diff) |
fix url and sentence tags on kanji cards
Diffstat (limited to 'ext/fg/js/popup.js')
-rw-r--r-- | ext/fg/js/popup.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/fg/js/popup.js b/ext/fg/js/popup.js index 74e25c7d..751c6acc 100644 --- a/ext/fg/js/popup.js +++ b/ext/fg/js/popup.js @@ -68,12 +68,12 @@ class Popup { return this.container.style.visibility !== 'hidden'; } - showTermDefs(definitions, options) { - this.invokeApi('showTermDefs', {definitions, options}); + showTermDefs(definitions, options, context) { + this.invokeApi('showTermDefs', {definitions, options, context}); } - showKanjiDefs(definitions, options) { - this.invokeApi('showKanjiDefs', {definitions, options}); + showKanjiDefs(definitions, options, context) { + this.invokeApi('showKanjiDefs', {definitions, options, context}); } showOrphaned() { |