diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-11-10 13:06:46 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-11-10 13:06:46 +0100 |
commit | 8afb623f088904ba58a0783c726bbe1cf3bac084 (patch) | |
tree | 9f41e808e9fc8dcdd1176222f51abb48c5134f85 /apps/files/js | |
parent | 3c030e50596f4ea40e72874c1086e6cfa7e8b233 (diff) | |
parent | 45a877c3a7ed01cf5e1ef9d98f044b78c96cab5c (diff) | |
download | nextcloud-server-8afb623f088904ba58a0783c726bbe1cf3bac084.tar.gz nextcloud-server-8afb623f088904ba58a0783c726bbe1cf3bac084.zip |
Merge pull request #12070 from owncloud/accessibility-fixes
Accessibility fixes
Diffstat (limited to 'apps/files/js')
-rw-r--r-- | apps/files/js/fileactions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 8ae0d8f1b2e..38ede46beb8 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -261,7 +261,7 @@ } var html = '<a href="#" class="action action-' + name.toLowerCase() + '" data-action="' + name + '">'; if (img) { - html += '<img class ="svg" src="' + img + '" />'; + html += '<img class ="svg" alt="" src="' + img + '" />'; } html += '<span> ' + actionText + '</span></a>'; |