aboutsummaryrefslogtreecommitdiff
path: root/ext/fg/js/frame.js
diff options
context:
space:
mode:
authorAlex Yatskov <alex@foosoft.net>2017-03-04 11:45:55 -0800
committerAlex Yatskov <alex@foosoft.net>2017-03-04 11:45:55 -0800
commitb1950cf47eea6e1e4713285fc883ad6c9ac043c6 (patch)
tree0b4eec95b4519770dfb91ad70f9faaf577b763ab /ext/fg/js/frame.js
parentca6d12dd626ba8da9103525462d59f3d63927a93 (diff)
prelim search support
Diffstat (limited to 'ext/fg/js/frame.js')
-rw-r--r--ext/fg/js/frame.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/fg/js/frame.js b/ext/fg/js/frame.js
index b5077531..32e227d0 100644
--- a/ext/fg/js/frame.js
+++ b/ext/fg/js/frame.js
@@ -36,7 +36,7 @@ class Frame {
const params = {
definitions,
grouped: options.general.groupResults,
- addable: options.ankiMethod !== 'disabled',
+ addable: options.anki.enabled,
playback: options.general.audioPlayback
};
@@ -49,7 +49,7 @@ class Frame {
this.showSpinner(false);
window.scrollTo(0, 0);
- bgTextRender(params, 'terms.html').then(content => {
+ bgTextRender('terms.html', params).then(content => {
$('#content').html(content);
$('.action-add-note').click(this.onAddNote.bind(this));
@@ -87,7 +87,7 @@ class Frame {
this.showSpinner(false);
window.scrollTo(0, 0);
- bgTextRender(params, 'kanji.html').then(content => {
+ bgTextRender('kanji.html', params).then(content => {
$('#content').html(content);
$('.action-add-note').click(this.onAddNote.bind(this));