Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. dogs: FirebaseListObservable;
  2.  
  3. currentDog = new BehaviorSubject(null);
  4.  
  5. ngOnInit() {
  6. this.dogs = this.db.list('/dogs')
  7. }
  8. changeDog(dog) {
  9. this.currentDog.next(dog)
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement