diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-03-04 11:45:55 -0800 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-03-04 11:45:55 -0800 |
commit | b1950cf47eea6e1e4713285fc883ad6c9ac043c6 (patch) | |
tree | 0b4eec95b4519770dfb91ad70f9faaf577b763ab /ext/fg/js/util.js | |
parent | ca6d12dd626ba8da9103525462d59f3d63927a93 (diff) |
prelim search support
Diffstat (limited to 'ext/fg/js/util.js')
-rw-r--r-- | ext/fg/js/util.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ext/fg/js/util.js b/ext/fg/js/util.js index 85552a31..c38112f5 100644 --- a/ext/fg/js/util.js +++ b/ext/fg/js/util.js @@ -46,15 +46,11 @@ function bgTermsFind(text) { return bgInvoke('termsFind', {text}); } -function bgTermsFindGrouped(text) { - return bgInvoke('termsFindGrouped', {text}); -} - function bgKanjiFind(text) { return bgInvoke('kanjiFind', {text}); } -function bgTextRender(data, template) { +function bgTextRender(template, data) { return bgInvoke('textRender', {data, template}); } |