diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-03-26 10:28:49 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-03-26 10:31:00 +0100 |
commit | cd88ddddaf8393685cd3c5456b97746cd89363c3 (patch) | |
tree | 453fc804284d152848e9b5f630ec48871ba43c8f /settings/templates/apps.php | |
parent | d7414fbf0d9d5a38966ddfb5b58543bfc59089d2 (diff) | |
download | nextcloud-server-cd88ddddaf8393685cd3c5456b97746cd89363c3.tar.gz nextcloud-server-cd88ddddaf8393685cd3c5456b97746cd89363c3.zip |
fix accessibility of ownCloud logo and navigation entries, fix #15013g
Diffstat (limited to 'settings/templates/apps.php')
-rw-r--r-- | settings/templates/apps.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 1d059d4f77f..a2fe5d9b63a 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -1,6 +1,8 @@ <script id="categories-template" type="text/x-handlebars-template"> {{#each this}} - <li id="app-category-{{id}}" data-category-id="{{id}}"><a>{{displayName}}</a></li> + <li id="app-category-{{id}}" data-category-id="{{id}}" tabindex="0"> + <a>{{displayName}}</a> + </li> {{/each}} <?php if(OC_Config::getValue('appstoreenabled', true) === true): ?> |