diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-06-15 20:11:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-15 20:11:54 -0400 |
commit | 6562d0c1e507b17ab929ed9525666a08084404fa (patch) | |
tree | 8e906d7fb36280c06c03c3a8886e4628a44cef05 /ext/bg/background.html | |
parent | b4a617cac3dea5f5efcd95514fa680fbcd7dd9fb (diff) |
Template renderer class (#574)
* Convert handlebars.js to a class
* Move/rename function
* Update helper registration
* Rename helper functions
* Limit cache size
* Make render() async
* Rename and move
Diffstat (limited to 'ext/bg/background.html')
-rw-r--r-- | ext/bg/background.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/background.html b/ext/bg/background.html index d51858a7..f2d01e85 100644 --- a/ext/bg/background.html +++ b/ext/bg/background.html @@ -34,12 +34,12 @@ <script src="/bg/js/dictionary-importer.js"></script> <script src="/bg/js/deinflector.js"></script> <script src="/bg/js/dictionary.js"></script> - <script src="/bg/js/handlebars.js"></script> <script src="/bg/js/json-schema.js"></script> <script src="/bg/js/media-utility.js"></script> <script src="/bg/js/options.js"></script> <script src="/bg/js/profile-conditions.js"></script> <script src="/bg/js/request.js"></script> + <script src="/bg/js/template-renderer.js"></script> <script src="/bg/js/text-source-map.js"></script> <script src="/bg/js/translator.js"></script> <script src="/bg/js/util.js"></script> |