Skip to content

Commit

Permalink
Fix missing role attr on aria-label elements
Browse files Browse the repository at this point in the history
  • Loading branch information
stedman committed Nov 13, 2022
1 parent 4e28b05 commit 281cf03
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions _layouts/base.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -99,19 +99,19 @@
</div>
<div class="navbar-end">
<a class="navbar-item is-inline-block-tablet" href="https://twitter.com/{{ site.author.twitter }}">
<span class="icon tooltip" aria-label="&ldquo;@{{ site.author.twitter }}&rdquo; on Twitter">
<span class="icon tooltip" role="link" aria-label="@{{ site.author.twitter }} on Twitter">
<svg class="icon-item" viewBox="0 0 512 512"><use xlink:href="#logo-twitter"></use></svg>
</span>
<span class="is-sr-only-desktop">Twitter: @{{ site.author.twitter }}</span>
</a>
<a class="navbar-item is-inline-block-tablet" href="https://{{ site.author.slack }}.slack.com">
<span class="icon tooltip" aria-label="&ldquo;{{ site.author.slack }}&rdquo; on Slack">
<span class="icon tooltip" role="link" aria-label="{{ site.author.slack }} on Slack">
<svg class="icon-item" viewBox="0 0 512 512"><use xlink:href="#logo-slack"></use></svg>
</span>
<span class="is-hidden-desktop">Slack: {{ site.author.slack }}</span>
</a>
<a class="navbar-item is-inline-block-tablet" href="https://github.com/{{ site.author.github }}">
<span class="icon tooltip" aria-label="&ldquo;{{ site.author.github }}&rdquo; on GitHub">
<span class="icon tooltip" role="link" aria-label="{{ site.author.github }} on GitHub">
<svg class="icon-item" viewBox="0 0 512 512"><use xlink:href="#logo-github"></use></svg>
</span>
<span class="is-hidden-desktop">GitHub: {{ site.author.github }}</span>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "AustinJavaScript.com",
"version": "3.2.0",
"description": "",
"version": "3.2.1",
"description": "Austin JavaScript site",
"scripts": {
"build:css": "node-sass _sass/_main.scss _site/assets/css/main.css --output-style compressed",
"build": "npm run clean && eleventy && npm run build:css && npm run purgecss",
Expand Down

0 comments on commit 281cf03

Please sign in to comment.