switch to plain X for close in a few places

This commit is contained in:
Jeff Atwood 2016-05-25 15:32:23 -07:00
parent 28c3e890ca
commit a7b994160a
3 changed files with 3 additions and 3 deletions

View File

@ -1,2 +1,2 @@
<a href {{action "closeMessage" this}} class='close'><i class='fa fa-times-circle'></i></a>
<a href {{action "closeMessage" this}} class='close'><i class='fa fa-close'></i></a>
{{{body}}}

View File

@ -1,4 +1,4 @@
<a href {{action "closeMessage" this}} class='close'>{{fa-icon "times-circle"}}</a>
<a href {{action "closeMessage" this}} class='close'>{{fa-icon "close"}}</a>
<h3>{{i18n 'composer.similar_topics'}}</h3>
<ul class='topics'>

View File

@ -15,6 +15,6 @@
{{/each}}
<div class='link'>
<a href {{action "close"}} aria-label='{{i18n 'share.close'}}' title='{{i18n 'share.close'}}'>{{fa-icon "times-circle"}}</a>
<a href {{action "close"}} aria-label='{{i18n 'share.close'}}' title='{{i18n 'share.close'}}'>{{fa-icon "close"}}</a>
</div>
{{/if}}