diff options
Diffstat (limited to 'ext/fg/js')
| -rw-r--r-- | ext/fg/js/frame.js | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/ext/fg/js/frame.js b/ext/fg/js/frame.js index 32e227d0..c1253e41 100644 --- a/ext/fg/js/frame.js +++ b/ext/fg/js/frame.js @@ -75,7 +75,7 @@ class Frame {          const sequence = ++this.sequence;          const params = {              definitions, -            addable: options.ankiMethod !== 'disabled' +            addable: options.anki.enabled          };          definitions.forEach(definition => { @@ -165,7 +165,7 @@ class Frame {      }      showSpinner(show) { -        const spinner = $('.spinner'); +        const spinner = $('#spinner');          if (show) {              spinner.show();          } else { |