Guest User

Untitled

a guest
Jun 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. if(fromClick) { this.subscription.off(); this.firstRun = true;}
  2. this.postFeed = new Array();
  3. this.subscription = this.database.database.ref('/posts/'+this.locationId)
  4. .orderByChild('created')
  5. .limitToLast(10);
  6.  
  7. this.subscription.on('child_added', (snapshot) => {
  8. this.postFeed.push(snapshot.val());
  9. });
Add Comment
Please, Sign In to add comment