Skip to content

Commit

Permalink
(feat): adds remind owner to top of posts
Browse files Browse the repository at this point in the history
  • Loading branch information
markharding committed Nov 29, 2016
1 parent 2f18249 commit af3259d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions app/src/modules/newsfeed/activity/activity.component.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
<AbsoluteLayout style="padding:8; padding-bottom:0" [nsRouterLink]="['/channel/:id', { id: entity.ownerObj.guid }]" *ngIf="entity.remind_object" >

<StackLayout orientation="horizontal" left="8">
<Image *ngIf="entity.ownerObj"
[src]="'https://www.minds.com/icon/' + entity.ownerObj.guid + '/medium'"
width="12"
height="12"
stretce="aspectFill"
style="border-radius:6;"
></Image>
<Label [text]="entity.ownerObj.name"
style="font-weight:bold; font-size: 11; text-transform:uppercase; color:#888; padding-left: 8"></Label>
<Label text="repeat" class="material-icon" style="color:#4690D7; font-size: 14; padding-left: 8"></Label>

</StackLayout>
</AbsoluteLayout>


<AbsoluteLayout style="padding:8" [nsRouterLink]="['/channel/:id', { id: entity.ownerObj.guid }]" *ngIf="!entity.remind_object" >
<Image *ngIf="entity.ownerObj"
[src]="'https://www.minds.com/icon/' + entity.ownerObj.guid + '/medium'"
Expand Down

0 comments on commit af3259d

Please sign in to comment.