diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-11-06 15:33:38 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-11-06 15:33:38 +0100 |
commit | af743efff0411f96d1f719ccdf1553c4eb881cf5 (patch) | |
tree | 62a74acdb645d19c46f0cb696242a7635f50f3cd /apps/files | |
parent | 45c6ec85824adcc9b8ede93e2141c3da313254a4 (diff) | |
download | nextcloud-server-af743efff0411f96d1f719ccdf1553c4eb881cf5.tar.gz nextcloud-server-af743efff0411f96d1f719ccdf1553c4eb881cf5.zip |
add alt text for file actions, but leave empty since text is directly next to it
Diffstat (limited to 'apps/files')
-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>'; |