diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-09-05 21:10:19 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-09-05 21:10:19 -0700 |
commit | 083999212e262c0a51b9401cb9666e6a49e35de9 (patch) | |
tree | 1af13ab06bea933038cfd1f17f15ae6c273a52ab /ext/bg/js/backend.js | |
parent | 722ddf163818035d603ba8042e1e32ff7dcdfc84 (diff) |
work on sandbox
Diffstat (limited to 'ext/bg/js/backend.js')
-rw-r--r-- | ext/bg/js/backend.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index 9802ea7c..5061557b 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -113,8 +113,8 @@ class Backend { forward(apiNoteView(noteId), callback); }, - templateRender: ({template, data, callback}) => { - forward(apiTemplateRender(template, data), callback); + templateRender: ({template, data, dynamic, callback}) => { + forward(apiTemplateRender(template, data, dynamic), callback); }, commandExec: ({command, callback}) => { |