diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-04-04 22:02:26 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-04-04 22:02:26 -0700 |
commit | 37ffcbf3ee2d9722751e899bdf4bac91ca7c92c1 (patch) | |
tree | ee2c320602cbf5bb846d2b2832375e8e4650f11e /ext/bg/js/templates.js | |
parent | e5a3904cf7a90519aaf7d7529179156eb4b28fdf (diff) |
File reorg
Diffstat (limited to 'ext/bg/js/templates.js')
-rw-r--r-- | ext/bg/js/templates.js | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/ext/bg/js/templates.js b/ext/bg/js/templates.js new file mode 100644 index 00000000..8ac5f8e5 --- /dev/null +++ b/ext/bg/js/templates.js @@ -0,0 +1,35 @@ +(function() { + var template = Handlebars.template, templates = Handlebars.templates = Handlebars.templates || {}; +templates['defs.html'] = template({"1":function(container,depth0,helpers,partials,data) { + var stack1; + + return "<div class=\"yomichan-def\">\n" + + ((stack1 = container.invokePartial(partials["term.html"],depth0,{"name":"term.html","data":data,"indent":" ","helpers":helpers,"partials":partials,"decorators":container.decorators})) != null ? stack1 : "") + + " " + + ((stack1 = helpers.unless.call(depth0 != null ? depth0 : {},(data && data.last),{"name":"unless","hash":{},"fn":container.program(2, data, 0),"inverse":container.noop,"data":data})) != null ? stack1 : "") + + "\n</div>\n"; +},"2":function(container,depth0,helpers,partials,data) { + return "<br>"; +},"compiler":[7,">= 4.0.0"],"main":function(container,depth0,helpers,partials,data) { + var stack1; + + return ((stack1 = helpers.each.call(depth0 != null ? depth0 : {},(depth0 != null ? depth0.defs : depth0),{"name":"each","hash":{},"fn":container.program(1, data, 0),"inverse":container.noop,"data":data})) != null ? stack1 : ""); +},"usePartial":true,"useData":true}); +templates['term.html'] = template({"1":function(container,depth0,helpers,partials,data) { + var helper; + + return "<div class=\"yomichan-def-reading\">" + + container.escapeExpression(((helper = (helper = helpers.reading || (depth0 != null ? depth0.reading : depth0)) != null ? helper : helpers.helperMissing),(typeof helper === "function" ? helper.call(depth0 != null ? depth0 : {},{"name":"reading","hash":{},"data":data}) : helper))) + + "</div>"; +},"compiler":[7,">= 4.0.0"],"main":function(container,depth0,helpers,partials,data) { + var stack1, helper, alias1=depth0 != null ? depth0 : {}, alias2=helpers.helperMissing, alias3="function", alias4=container.escapeExpression; + + return "<div class=\"yomichan-def-expression\">" + + alias4(((helper = (helper = helpers.expression || (depth0 != null ? depth0.expression : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"expression","hash":{},"data":data}) : helper))) + + "</div>\n" + + ((stack1 = helpers["if"].call(alias1,(depth0 != null ? depth0.reading : depth0),{"name":"if","hash":{},"fn":container.program(1, data, 0),"inverse":container.noop,"data":data})) != null ? stack1 : "") + + "\n<div class=\"yomichan-def-glossary\">" + + 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))) + + "</div>\n"; +},"useData":true}); +})();
\ No newline at end of file |