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
app/assets/javascripts/discourse/templates

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}}} {{{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> <h3>{{i18n 'composer.similar_topics'}}</h3>
<ul class='topics'> <ul class='topics'>

View file

@ -15,6 +15,6 @@
{{/each}} {{/each}}
<div class='link'> <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> </div>
{{/if}} {{/if}}