Skip to content

Instantly share code, notes, and snippets.

@wolfflow
Created February 14, 2013 12:29
Show Gist options
  • Save wolfflow/4952468 to your computer and use it in GitHub Desktop.
Save wolfflow/4952468 to your computer and use it in GitHub Desktop.
prevent mousemove dupe values and sample with interval
$("body").asEventStream("mousemove")
.map((e)-> [e.screenX, e.screenY].join(""))
.toProperty()
.sample(100)
.skipDuplicates()
.map(->Date.now())
.assign (x) ->
console.log x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment