Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
himorin committed Jul 9, 2020
1 parent d9f4dea commit 7fefe5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glossary/glossary.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function refleshGlossary(sel_lang) {
}
if (data_orig['entries'][key]['link']) {
trline += '<td>';
for (let ino = 0; i < data_orig['entries'][key]['link'].length; ino++) {
for (let ino = 0; ino < data_orig['entries'][key]['link'].length; ino++) {
if (ino > 0) { trline += ', '; }
trline += '<a href="' + data_orig['entries'][key]['link'][ino] + '">*';
trline += (ino + 1).toString();
Expand Down

0 comments on commit 7fefe5d

Please sign in to comment.