diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-04-18 15:40:47 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-04-18 15:40:47 +0200 |
commit | 0ee9924b168986c5bf6c9167914447c2fcf2bee9 (patch) | |
tree | 330585af1088096fa9a09ada7a126374f9ae06c9 /core/templates | |
parent | 0d675eca568fabc9dba1a682c32f2da2554332f7 (diff) | |
download | nextcloud-server-0ee9924b168986c5bf6c9167914447c2fcf2bee9.tar.gz nextcloud-server-0ee9924b168986c5bf6c9167914447c2fcf2bee9.zip |
Add aria-label to more-apps menu as well
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/layout.user.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 537d9d1ea34..bf16c1740ec 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -63,7 +63,7 @@ <?php endforeach; ?> <li id="more-apps" class="menutoggle" aria-haspopup="true" aria-controls="navigation" aria-expanded="false"> - <a href="#"> + <a href="#" aria-label="<?php p($l->t('More apps')); ?>"> <div class="icon-more-white"></div> <span><?php p($l->t('More apps')); ?></span> </a> @@ -71,7 +71,7 @@ </ul> <nav role="navigation"> - <div id="navigation" style="display: none;"> + <div id="navigation" style="display: none;" aria-label="<?php p($l->t('More apps menu')); ?>"> <div id="apps"> <ul> <?php foreach($_['navigation'] as $entry): ?> |