diff options
Diffstat (limited to 'ext/mixed')
-rw-r--r-- | ext/mixed/css/frame.css | 4 | ||||
-rw-r--r-- | ext/mixed/img/source-term.png | bin | 0 -> 680 bytes | |||
-rw-r--r-- | ext/mixed/js/display.js | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/ext/mixed/css/frame.css b/ext/mixed/css/frame.css index e6a41aac..af689cbe 100644 --- a/ext/mixed/css/frame.css +++ b/ext/mixed/css/frame.css @@ -31,8 +31,8 @@ */ hr { - margin-top: 0.8em; - margin-bottom: 0.8em; + padding: 0px; + margin: 0px; } #spinner { diff --git a/ext/mixed/img/source-term.png b/ext/mixed/img/source-term.png Binary files differnew file mode 100644 index 00000000..2e53c698 --- /dev/null +++ b/ext/mixed/img/source-term.png diff --git a/ext/mixed/js/display.js b/ext/mixed/js/display.js index 07a9f0c1..57c9b882 100644 --- a/ext/mixed/js/display.js +++ b/ext/mixed/js/display.js @@ -100,6 +100,7 @@ class Display { const sequence = ++this.sequence; const params = { definitions, + source: context && context.source, addable: options.anki.enable }; @@ -118,7 +119,7 @@ class Display { this.container.html(content); $('.action-add-note').click(this.onActionAddNote.bind(this)); - $('.term-source').click(e => { + $('.source-term').click(e => { e.preventDefault(); if (context && context.source) { |