diff options
author | siikamiika <siikamiika@users.noreply.github.com> | 2017-10-24 12:38:05 +0300 |
---|---|---|
committer | siikamiika <siikamiika@users.noreply.github.com> | 2017-10-24 12:38:05 +0300 |
commit | e034ca3ad4f88282e8dfec27df5cb7c55e0a47c6 (patch) | |
tree | 165f11bf51670ca87b4c8cce30dee0c458b4c933 /ext/bg/js/database.js | |
parent | bf15358bb433be22bf412a14911bf275079ae4fc (diff) |
add tag meta score
Diffstat (limited to 'ext/bg/js/database.js')
-rw-r--r-- | ext/bg/js/database.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/bg/js/database.js b/ext/bg/js/database.js index 15291968..469b1311 100644 --- a/ext/bg/js/database.js +++ b/ext/bg/js/database.js @@ -359,12 +359,13 @@ class Database { } const rows = []; - for (const [name, category, order, notes] of entries) { + for (const [name, category, order, notes, score] of entries) { const row = dictTagSanitize({ name, category, order, notes, + score, dictionary: summary.title }); @@ -449,7 +450,7 @@ class Database { const bank = []; for (const name in index.tagMeta) { const tag = index.tagMeta[name]; - bank.push([name, tag.category, tag.order, tag.notes]); + bank.push([name, tag.category, tag.order, tag.notes, tag.score]); } tagDataLoaded(summary, bank, ++bankTotalCount, bankLoadedCount++); |