diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-10-07 18:01:31 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-10-07 18:01:31 +0200 |
commit | da8573840af4b56720d73909d9611315631c83fc (patch) | |
tree | 4e8a1adc5359409fd29ff31c277adaec40892ef3 /apps/files | |
parent | cd818e7419fb39d97683ecc5803534b0ed632596 (diff) | |
download | nextcloud-server-da8573840af4b56720d73909d9611315631c83fc.tar.gz nextcloud-server-da8573840af4b56720d73909d9611315631c83fc.zip |
Move alt text for favorite action to image
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/mainfileinfodetailview.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/files/js/mainfileinfodetailview.js b/apps/files/js/mainfileinfodetailview.js index b50e92dea8c..4eaff7adc8f 100644 --- a/apps/files/js/mainfileinfodetailview.js +++ b/apps/files/js/mainfileinfodetailview.js @@ -15,9 +15,8 @@ '<div class="fileName"><h3 title="{{name}}" class="ellipsis">{{name}}</h3></div>' + ' <div class="file-details ellipsis">' + ' <a href="#" ' + - ' alt="{{starAltText}}"' + ' class="action action-favorite favorite">' + - ' <img class="svg" src="{{starIcon}}" />' + + ' <img class="svg" alt="{{starAltText}}" src="{{starIcon}}" />' + ' </a>' + ' {{#if hasSize}}<span class="size" title="{{altSize}}">{{size}}</span>, {{/if}}<span class="date" title="{{altDate}}">{{date}}</span>' + ' </div>' + |