open-vault/ui/lib/core/addon/components/external-link.hbs
Chelsea Shaw 0589dc1f53
UI: Update <a> tags to LinkTo's (#17866)
* chore: shared external link component, glimmerization

* chore: update easy a tags

* chore: update other a tags

* chore: lil cleanup

* changelog
2022-11-11 09:56:44 -06:00

9 lines
212 B
Handlebars

{{#if @sameTab}}
<a href={{this.href}} ...attributes>
{{yield}}
</a>
{{else}}
<a href={{this.href}} target="_blank" rel="noopener noreferrer" class="doc-link" ...attributes>
{{yield}}
</a>
{{/if}}