aboutsummaryrefslogtreecommitdiff
path: root/ext/bg/js/yomichan.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/bg/js/yomichan.js')
-rw-r--r--ext/bg/js/yomichan.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/yomichan.js b/ext/bg/js/yomichan.js
index 11d71ae1..6611e7ac 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 += `<a href="#">${c}</a>`;
+ result += Handlebars.templates['kanji-link.html']({kanji: c});
} else {
result += c;
}