1
0
Fork 0

API changes

This commit is contained in:
Alex Kotov 2023-03-26 06:55:05 +04:00
parent d2796a3cda
commit 2a17fe7474
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08

View file

@ -124,7 +124,7 @@ window.leqsikoni = {
var items_html = [] var items_html = []
inflections.forEach(function(inflection) { inflections.forEach(function(inflection) {
var descr = inflection['descr'] var inflection_descr = inflection['inflection_descr']
var value = inflection['value'] || '' var value = inflection['value'] || ''
var other_word_id = inflection['other_word_id'] var other_word_id = inflection['other_word_id']
@ -134,7 +134,7 @@ window.leqsikoni = {
} }
items_html.push( items_html.push(
'<li><b>' + descr + '</b>: ' + value + '</li>' '<li><b>' + inflection_descr + '</b>: ' + value + '</li>'
) )
}) })