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:
Robin Ward 2015-06-26 12:30:42 -04:00
commit 9cf77bc01d
1 changed files with 2 additions and 2 deletions

View File

@ -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>