chromy
chromy copied to clipboard
mouse interaction selector option
This is a requirement for many of my use-cases...
.mouseMoved(<selector>, [options])
any chance of getting this?
I solved my immediate need with this...
chromyChain
.rect(<selector>)
.result(function (rect) {
chromyChain.mouseMoved(rect.left, rect.top)
});
But I highly recommend enabling this pattern for all the "mouse" methods... .mouseMoved(<selector>, [options])
Thanks.
exactly, that's useful. I'll add these mouse methods.