Skip to content

Commit

Permalink
featurelist/table Remove the C link to character usage for Chinese, J…
Browse files Browse the repository at this point in the history
…apanese, & Korean.
  • Loading branch information
r12a committed Jul 18, 2024
1 parent 7473aa9 commit 21eb5e2
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions featurelist/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,13 @@ function resort (column, reverse) {
table += '<td title="Script" style="text-align:right; padding-inline:.5rem;">'+scriptData[i].script+'</td>'

table += '<td title="Link to the orthography notes.">'+linked+'</td>'

table += '<td title="Go to the Character Usage page for '+scriptData[i].id+'"><a href="../../app-charuse/index.html?language='+scriptData[i].id+'" style="font-size:100%;font-weight:bold; padding-inline:.25rem;" target="_blank">C</td>'

if (scriptData[i].id !== 'cmn' && scriptData[i].id !== 'ja' && scriptData[i].id !== 'ko') {
table += '<td title="Go to the Character Usage page for '+scriptData[i].id+'"><a href="../../app-charuse/index.html?language='+scriptData[i].id+'" style="font-size:100%;font-weight:bold; padding-inline:.25rem;" target="_blank">C</a></td>'
}
else {
table += '<td>&nbsp;</td>'
}

table += '<td title="Total characters" style="text-align:right;padding: 0 .5em;" class="y">'+scriptData[i].chars+'</td>'

Expand Down

0 comments on commit 21eb5e2

Please sign in to comment.