diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-09-11 16:56:27 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-09-11 16:56:27 -0700 |
commit | 3a1aad07d61411f634e86f905babd6fbbac2eae1 (patch) | |
tree | f343fc427c0c791823a39a482dc3d1cd35d34253 /ext/bg/js/backend.js | |
parent | 65b679caeb7ae7261ea6f2ba76d1b14ff1d68c5c (diff) | |
parent | 2eb85cb835a4aece7839eba25c0030e9eb186f85 (diff) |
Merge branch 'master' into firefox-amo
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 6b3acaa9..7d68ed84 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -104,8 +104,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}) => { |