diff options
| author | Alex Yatskov <alex@foosoft.net> | 2017-05-25 23:06:10 -0700 | 
|---|---|---|
| committer | Alex Yatskov <alex@foosoft.net> | 2017-05-25 23:06:10 -0700 | 
| commit | 16baf9a400ac11a1c4f53ba6665db03a900511e0 (patch) | |
| tree | 685096179093f112a9263f15d3cf081f50e9634d /ext/mixed/js | |
| parent | 1cdf496824709b4e4579d700c333e832d790925e (diff) | |
| parent | 618a3cb319c247c7196b1b83389d5f43241ab0c6 (diff) | |
Merge branch 'master' into firefox-amo
Diffstat (limited to 'ext/mixed/js')
| -rw-r--r-- | ext/mixed/js/display.js | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/mixed/js/display.js b/ext/mixed/js/display.js index 0167c605..7982c69f 100644 --- a/ext/mixed/js/display.js +++ b/ext/mixed/js/display.js @@ -69,7 +69,8 @@ class Display {              definitions,              addable: options.anki.enable,              grouped: options.general.groupResults, -            playback: options.general.audioSource !== 'disabled' +            playback: options.general.audioSource !== 'disabled', +            debug: options.general.debugInfo          };          if (context) { @@ -106,7 +107,8 @@ class Display {          const params = {              definitions,              source: context && context.source, -            addable: options.anki.enable +            addable: options.anki.enable, +            debug: options.general.debugInfo          };          if (context) {  |