added browsing binding

This commit is contained in:
Nicolas Constant 2019-11-19 00:29:39 -05:00
parent c09b89b131
commit 29d646477d
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 12 additions and 0 deletions

View File

@ -78,4 +78,16 @@ export class StreamNotificationsComponent implements OnInit {
}, 0); }, 0);
return false; return false;
} }
browseAccount(accountName: string): void {
this.browseAccountEvent.next(accountName);
}
browseHashtag(hashtag: string): void {
this.browseHashtagEvent.next(hashtag);
}
browseThread(openThreadEvent: OpenThreadEvent): void {
this.browseThreadEvent.next(openThreadEvent);
}
} }