aboutsummaryrefslogtreecommitdiff
path: root/ext/fg/js/util.js
diff options
context:
space:
mode:
authorAlex Yatskov <alex@foosoft.net>2017-03-04 11:45:55 -0800
committerAlex Yatskov <alex@foosoft.net>2017-03-04 11:45:55 -0800
commitb1950cf47eea6e1e4713285fc883ad6c9ac043c6 (patch)
tree0b4eec95b4519770dfb91ad70f9faaf577b763ab /ext/fg/js/util.js
parentca6d12dd626ba8da9103525462d59f3d63927a93 (diff)
prelim search support
Diffstat (limited to 'ext/fg/js/util.js')
-rw-r--r--ext/fg/js/util.js6
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});
}