Skip to content

Commit

Permalink
Step 6.2: Bind click event to showMessages
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and DAB0mB committed Feb 13, 2017
1 parent 5f5a128 commit e67a8d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/chats/chats.html
Expand Up @@ -17,7 +17,7 @@
<ion-content class="chats-page-content">
<ion-list class="chats">
<ion-item-sliding *ngFor="let chat of chats | async">
<button ion-item class="chat">
<button ion-item class="chat" (click)="showMessages(chat)">
<img class="chat-picture" [src]="chat.picture">
<div class="chat-info">
<h2 class="chat-title">{{chat.title}}</h2>
Expand Down

0 comments on commit e67a8d4

Please sign in to comment.