Fixing issue #1170

Add an empty alt attribute for <img tag , to fixing broken empty image placement in firefox
as suggested by @bharatjilledumudi
This commit is contained in:
Riyanto Jayadi 2015-11-01 01:42:45 +08:00
parent fef1818f4a
commit 98dce87740

View file

@ -2,7 +2,7 @@
{{#if embedlyKeyExists}}
<div class="post-thumbnail-outer-wrapper" style="{{outerStyle}}">
<div class="post-thumbnail-inner-wrapper" style="{{innerStyle}}">
<img src="{{this.value}}" class="post-thumbnail-preview" style="{{style}}"/>
<img src="{{this.value}}" class="post-thumbnail-preview" alt="" style="{{style}}"/>
<div class="post-thumbnail-loading">{{>spinner}}</div>
</div>
</div>
@ -16,4 +16,4 @@
<p>{{_ "please_ask_your_admin_to_fill_in_embedly_key"}}</p>
{{/if}}
{{/if}}
</template>
</template>