summaryrefslogtreecommitdiffstats
path: root/settings/templates/apps.php
diff options
context:
space:
mode:
authorLukáš Tyrychtr <lukastyrychtr@gmail.com>2016-04-19 19:49:31 +0200
committerLukáš Tyrychtr <lukastyrychtr@gmail.com>2016-04-19 19:49:31 +0200
commitc2f2edc092798ab74645ed1bac9d5d95a7ff5639 (patch)
tree107b4e2b82cdece52ec1a8a8a996da89ed95641e /settings/templates/apps.php
parentb441d3dcb32ef2cf2aa0e088ed320996b67e8fd5 (diff)
downloadnextcloud-server-c2f2edc092798ab74645ed1bac9d5d95a7ff5639.tar.gz
nextcloud-server-c2f2edc092798ab74645ed1bac9d5d95a7ff5639.zip
Fix reporting of the categories in app settings as links by screen readers.
Diffstat (limited to 'settings/templates/apps.php')
-rw-r--r--settings/templates/apps.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/templates/apps.php b/settings/templates/apps.php
index ce6dcef842c..ecb00fb27c3 100644
--- a/settings/templates/apps.php
+++ b/settings/templates/apps.php
@@ -25,7 +25,7 @@ script(
<script id="categories-template" type="text/x-handlebars-template">
{{#each this}}
<li id="app-category-{{ident}}" data-category-id="{{ident}}" tabindex="0">
- <a>{{displayName}}</a>
+ <a href="#">{{displayName}}</a>
</li>
{{/each}}
@@ -94,8 +94,8 @@ script(
</p>
{{/if}}
</div><!-- end app-description-container -->
- <div class="app-description-toggle-show"><?php p($l->t("Show description …"));?></div>
- <div class="app-description-toggle-hide hidden"><?php p($l->t("Hide description …"));?></div>
+ <div class="app-description-toggle-show" role="link"><?php p($l->t("Show description …"));?></div>
+ <div class="app-description-toggle-hide hidden" role="link"><?php p($l->t("Hide description …"));?></div>
<div class="app-dependencies update hidden">
<p><?php p($l->t('This app has an update available.')); ?></p>