diff options
| author | Fuwn <[email protected]> | 2023-12-09 15:30:12 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-09 15:30:12 -0800 |
| commit | b44340d3ceb3fd779b20ef7f7ee4dc7f6538f426 (patch) | |
| tree | 086a2f7674e5761513240c8c038572f44b84058a /src | |
| parent | fix(html): null check settings (diff) | |
| download | due.moe-b44340d3ceb3fd779b20ef7f7ee4dc7f6538f426.tar.xz due.moe-b44340d3ceb3fd779b20ef7f7ee4dc7f6538f426.zip | |
fix(html): add alt tag
Diffstat (limited to 'src')
| -rw-r--r-- | src/app.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/app.html b/src/app.html index c38658ca..38bed62f 100644 --- a/src/app.html +++ b/src/app.html @@ -101,21 +101,25 @@ case 'mai': { mai.src = '/aobuta/mai.png'; + mai.alt = 'Mai Sakurajima'; } break; case 'nodoka': { mai.src = '/aobuta/nodoka.webp'; + mai.alt = 'Nodoka Toyohama'; } break; case 'kaede': { mai.src = '/aobuta/kaede.png'; + mai.alt = 'Kaede Azusagawa'; } break; case 'none': { { mai.style.display = 'none'; + mai.alt = 'No one'; } break; } |