summaryrefslogtreecommitdiff
path: root/ext/bg/js/handlebars.js
diff options
context:
space:
mode:
authorAlex Yatskov <alex@foosoft.net>2017-08-18 21:14:09 -0700
committerAlex Yatskov <alex@foosoft.net>2017-08-18 21:14:09 -0700
commit30fe3d250646e0993cc49a7ef6b783eee206d043 (patch)
treec9d744ce3290005775dc8e9da08c79f8518c96af /ext/bg/js/handlebars.js
parent922d2cd468ec1d05fc4d68f60419a6af11aa5c94 (diff)
fix anki network error dialog on search page, cleanup template
workaround
Diffstat (limited to 'ext/bg/js/handlebars.js')
-rw-r--r--ext/bg/js/handlebars.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/handlebars.js b/ext/bg/js/handlebars.js
index debb0690..a13de153 100644
--- a/ext/bg/js/handlebars.js
+++ b/ext/bg/js/handlebars.js
@@ -51,5 +51,5 @@ function handlebarsRender(template, data) {
Handlebars.registerHelper('multiLine', handlebarsMultiLine);
}
- return Handlebars.templates[template](data);
+ return Handlebars.templates[template](data).trim();
}