diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/js/contactsmenu.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/js/contactsmenu.js b/core/js/contactsmenu.js index bf469b8a321..2e33b5e7c64 100644 --- a/core/js/contactsmenu.js +++ b/core/js/contactsmenu.js @@ -58,7 +58,9 @@ + ' <div class="last-message">{{contact.lastMessage}}</div>' + '</div>' + '{{#if contact.topAction}}' - + '<a class="top-action {{contact.topAction.icon}}" href="{{contact.topAction.hyperlink}}" title="{{contact.topAction.title}}"></a>' + + '<a class="top-action" href="{{contact.topAction.hyperlink}}" title="{{contact.topAction.title}}">' + + ' <img src="{{contact.topAction.icon}}">' + + '</a>' + '{{/if}}' + '{{#if contact.hasManyActions}}' + ' <span class="other-actions icon-more"></span>' @@ -67,7 +69,7 @@ + ' {{#each contact.actions}}' + ' <li>' + ' <a href="{{hyperlink}}">' - + ' <span class="{{icon}}"></span>' + + ' <img src="{{icon}}">' + ' <span>{{title}}</span>' + ' </a>' + ' </li>' |