added browsing binding
This commit is contained in:
parent
c09b89b131
commit
29d646477d
|
@ -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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue