summaryrefslogtreecommitdiff
path: root/ext/bg/js/util.js
diff options
context:
space:
mode:
authorAlex Yatskov <alex@foosoft.net>2017-05-24 19:13:56 -0700
committerAlex Yatskov <alex@foosoft.net>2017-05-24 19:13:56 -0700
commit0efab9773d0cc6586eb4a1f271821795b6d07f5c (patch)
treee9a06728d9e2ab5f51e055f75ec3cc88c182df71 /ext/bg/js/util.js
parentb2833891f9b5d0ceaebc26586b02120bacec68be (diff)
options debugging code
Diffstat (limited to 'ext/bg/js/util.js')
-rw-r--r--ext/bg/js/util.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/bg/js/util.js b/ext/bg/js/util.js
index 64c79ab5..593e7d03 100644
--- a/ext/bg/js/util.js
+++ b/ext/bg/js/util.js
@@ -504,9 +504,13 @@ function jsonLoadDb(indexUrl, indexLoaded, termsLoaded, kanjiLoaded) {
* Helpers
*/
+function handlebarsEscape(text) {
+ return Handlebars.Utils.escapeExpression(text);
+}
+
function handlebarsDumpObject(options) {
const dump = JSON.stringify(options.fn(this), null, 4);
- return Handlebars.Utils.escapeExpression(dump);
+ return handlebarsEscape(dump);
}
function handlebarsKanjiLinks(options) {