Skip to content

Instantly share code, notes, and snippets.

@codebanesr
Last active June 3, 2020 18:46
Show Gist options
  • Save codebanesr/5cb9cbfcb716f6486420c02af73840e3 to your computer and use it in GitHub Desktop.
Save codebanesr/5cb9cbfcb716f6486420c02af73840e3 to your computer and use it in GitHub Desktop.
watchForChange() {
  this.validateForm.valueChanges.subscribe(change=>{
    CobrowsingformComponent.mysequenceNumber = CobrowsingformComponent.mysequenceNumber+10;
    const msg = {
      nextsequenceNumber: CobrowsingformComponent.mysequenceNumber,
      uniqueId: CobrowsingformComponent.uniqueId,
      change
    }

    this.socket.emit("message", msg);
  });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment