Merge pull request #3570 from tgxworld/middle_click_on_profile_image
FIX: Middle click on user card image and name not working.
This commit is contained in:
commit
9cf77bc01d
|
@ -1,7 +1,7 @@
|
||||||
{{#if controller.visible}}
|
{{#if controller.visible}}
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
|
|
||||||
<a href {{action "showUser"}}>{{bound-avatar avatar "huge"}}</a>
|
<a href={{user.path}} {{action "showUser"}}>{{bound-avatar avatar "huge"}}</a>
|
||||||
|
|
||||||
<div class="names">
|
<div class="names">
|
||||||
<span>
|
<span>
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{#if showName}}
|
{{#if showName}}
|
||||||
<h2><a href {{action "showUser"}}>{{name}}</a></h2>
|
<h2><a href={{user.path}} {{action "showUser"}}>{{name}}</a></h2>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue