Commit 9dc910bf authored by Dave Wolfe's avatar Dave Wolfe

Add aria label to share button in client menu

In addition to adding the label, this changes the <a> to a <button> as well.
Fixes https://github.com/hypothesis/product-backlog/issues/780
parent cf7241a8
......@@ -46,12 +46,13 @@
sort-key="vm.sortKey"
on-change-sort-key="vm.onChangeSortKey({sortKey: sortKey})">
</sort-dropdown>
<a class="top-bar__btn"
<button class="top-bar__btn"
ng-click="vm.onSharePage()"
ng-if="vm.showSharePageButton()"
title="Share this page">
title="Share this page"
aria-label="Share this page">
<i class="h-icon-annotation-share"></i>
</a>
</button>
<login-control
class="login-control"
auth="vm.auth"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment