Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. displaySpinner() {
  2. this.countDisplay++;
  3. this.subject.next(true);
  4. }
  5.  
  6. hideSpinner() {
  7. this.countDisplay--;
  8. if (this.countDisplay == 0) {
  9. this.subject.next(false);
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement