diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-04-17 20:24:22 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-04-17 20:24:22 -0700 |
commit | 94c30c83e69e050c0237988a77cd41342ebeebfe (patch) | |
tree | f92b8d6b808fde1f9f88b2a868467116acd02c01 /ext | |
parent | d5170414af9287143a9906fd81fde49318be4617 (diff) |
Cleanup
Diffstat (limited to 'ext')
-rw-r--r-- | ext/bg/js/templates.js | 7 | ||||
-rw-r--r-- | ext/bg/js/yomichan.js | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/ext/bg/js/templates.js b/ext/bg/js/templates.js index 75445786..cacd8808 100644 --- a/ext/bg/js/templates.js +++ b/ext/bg/js/templates.js @@ -27,6 +27,13 @@ templates['kanji.html'] = template({"compiler":[7,">= 4.0.0"],"main":function(co + alias4(((helper = (helper = helpers.glossary || (depth0 != null ? depth0.glossary : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"glossary","hash":{},"data":data}) : helper))) + "\n</div>\n"; },"useData":true}); +templates['kanji-link.html'] = template({"compiler":[7,">= 4.0.0"],"main":function(container,depth0,helpers,partials,data) { + var helper; + + return "<a href=\"#\">" + + container.escapeExpression(((helper = (helper = helpers.kanji || (depth0 != null ? depth0.kanji : depth0)) != null ? helper : helpers.helperMissing),(typeof helper === "function" ? helper.call(depth0 != null ? depth0 : {},{"name":"kanji","hash":{},"data":data}) : helper))) + + "</a>\n"; +},"useData":true}); templates['term.html'] = template({"1":function(container,depth0,helpers,partials,data) { var stack1, helper, options, alias1=depth0 != null ? depth0 : {}, alias2=helpers.helperMissing, alias3="function", buffer = "<div class=\"term\"><ruby>"; 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; } |