NIHVIVO-1315: Added title and alt HTML atributes to add, edit, and delete icons.

This commit is contained in:
mb863 2011-01-12 15:14:34 +00:00
parent 90ac18e9f0
commit e5b43812f1

View file

@ -45,7 +45,7 @@ we need to also show the property label. -->
<#if showEditingLinks>
<#local url = property.addUrl>
<#if url?has_content>
<a href="${url}"><img class="add-individual" src="${urls.images}/individual/addIcon.gif" alt="add relationship" /></a>
<a href="${url}" title="add relationship"><img class="add-individual" src="${urls.images}/individual/addIcon.gif" alt="add" /></a>
</#if>
</#if>
</#macro>
@ -67,13 +67,13 @@ we need to also show the property label. -->
<#macro editLink statement>
<#local url = statement.editUrl>
<#if url?has_content>
<a href="${url}"><img class="edit-individual" src="${urls.images}/individual/editIcon.gif" alt="change this relationship" /></a>
<a href="${url}" title="change this relationship"><img class="edit-individual" src="${urls.images}/individual/editIcon.gif" alt="edit" /></a>
</#if>
</#macro>
<#macro deleteLink statement>
<#local url = statement.deleteUrl>
<#if url?has_content>
<a href="${url}"><img class="delete-individual" src="${urls.images}/individual/deleteIcon.gif" alt="delete this relationship" /></a>
<a href="${url}" title="delete this relationship"><img class="delete-individual" src="${urls.images}/individual/deleteIcon.gif" alt="delete" /></a>
</#if>
</#macro>