This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/templates/components/share-source.hbs
Erick Guan ae62c1361e extends share links
- change `iconClass` to `faIcon`
- add `htmlIcon` to allow custom HTML
- add reddit, linkedin, tumblr
2015-03-16 16:44:50 +08:00

8 lines
191 B
Handlebars

<a href {{action "share" source}} {{bind-attr title="title"}}>
{{#if source.faIcon}}
<i {{bind-attr class=":fa source.faIcon"}}></i>
{{else}}
{{{source.htmlIcon}}}
{{/if}}
</a>