diff options
| author | Darius Jahandarie <djahandarie@gmail.com> | 2023-10-01 15:13:10 +0900 | 
|---|---|---|
| committer | Darius Jahandarie <djahandarie@gmail.com> | 2023-10-01 15:13:10 +0900 | 
| commit | 7f7045dc58b06c9ec1375b13beb94fc9c03ebfa9 (patch) | |
| tree | ecb62cbf29c34e4aa8023d35a5d834e302dc13cc | |
| parent | 8b9db7e8d5b9ab6575dc771849f9020cbb2c6777 (diff) | |
Satisfy wcag/h63 lint
| -rw-r--r-- | ext/display-templates.html | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/ext/display-templates.html b/ext/display-templates.html index 979415c7..286e11cb 100644 --- a/ext/display-templates.html +++ b/ext/display-templates.html @@ -136,25 +136,25 @@      </div>      <table class="kanji-glyph-data"><tbody>          <tr> -            <th>Meaning</th> -            <th>Readings</th> -            <th>Statistics</th> +            <th scope="col">Meaning</th> +            <th scope="col">Readings</th> +            <th scope="col">Statistics</th>          </tr>          <tr>              <td class="kanji-gloss-container"><ol class="kanji-gloss-list"></ol></td>              <td class="kanji-readings"><dl class="kanji-readings-chinese"></dl><dl class="kanji-readings-japanese"></dl></td>              <td class="kanji-statistics"></td>          </tr> -        <tr><th colspan="3">Classifications</th></tr> +        <tr><th scope="col" colspan="3">Classifications</th></tr>          <tr><td colspan="3" class="kanji-classifications"></td></tr> -        <tr><th colspan="3">Codepoints</th></tr> +        <tr><th scope="col" colspan="3">Codepoints</th></tr>          <tr><td colspan="3" class="kanji-codepoints"></td></tr> -        <tr><th colspan="3">Dictionary Indices</th></tr> +        <tr><th scope="col" colspan="3">Dictionary Indices</th></tr>          <tr><td colspan="3" class="kanji-dictionary-indices"></td></tr>      </tbody></table>  </div></template>  <template id="kanji-info-table-template"><table class="kanji-info-table"><tbody class="kanji-info-table-body"></tbody></table></template> -<template id="kanji-info-table-item-template"><tr class="kanji-info-table-item"><th class="kanji-info-table-item-header"></th><td class="kanji-info-table-item-value"></td></tr></template> +<template id="kanji-info-table-item-template"><tr class="kanji-info-table-item"><th scope="col" class="kanji-info-table-item-header"></th><td class="kanji-info-table-item-value"></td></tr></template>  <template id="kanji-info-table-empty-template"><tr class="kanji-info-table-item kanji-info-table-item-empty"><td class="kanji-info-table-item-value-empty">No data found</td></tr></template>  <template id="kanji-gloss-item-template"><li class="kanji-gloss-item"><span class="kanji-gloss-content"></span></li></template>  <!-- [html-validate-disable element-required-ancestor] --> |