Last active
April 22, 2019 08:27
-
-
Save Mayankgupta688/2c5b4c46d032053f59e4095ad07ef61b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { fromEvent } from 'rxjs'; | |
const clicksInDocument = fromEvent(document, 'click'); | |
clickInDocument.subscribe(function(event) { | |
console.log("X Co-ordinates for click Event: " + event.x); | |
console.log("Y Co-ordinates for click Event: " + event.y); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment