diff options
| author | Alex Yatskov <alex@foosoft.net> | 2016-04-17 20:50:58 -0700 | 
|---|---|---|
| committer | Alex Yatskov <alex@foosoft.net> | 2016-04-17 20:50:58 -0700 | 
| commit | f8d2cc1b0369e6350a91d540ef6165cd7dc50040 (patch) | |
| tree | 1c70810fe7a6c680b0dd48a1b63dba151c55f70b | |
| parent | 5dcae0d44bafcd580f712421f2cbd9bfff793f70 (diff) | |
Get rid of lame spaces
| -rw-r--r-- | ext/bg/js/yomichan.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/ext/bg/js/yomichan.js b/ext/bg/js/yomichan.js index 6611e7ac..110fb403 100644 --- a/ext/bg/js/yomichan.js +++ b/ext/bg/js/yomichan.js @@ -24,7 +24,7 @@ class Yomichan {              let result = '';              for (const c of options.fn(this)) {                  if (Translator.isKanji(c)) { -                    result += Handlebars.templates['kanji-link.html']({kanji: c}); +                    result += Handlebars.templates['kanji-link.html']({kanji: c}).trim();                  } else {                      result += c;                  } |