I have text line at first after that i have canvas
but position mouse on canvas it's wrong (zero of y position now = height of text line)
http://jsfiddle.net/dSC26/
<div id="output">output</div>
<div id="container"></div>
yoda.on('mousemove', function(e) {
$('#output').html('position mouse on canvas: '+'x: ' + e.clientX + ', y: ' + e.clientY);
});
How can i fix that, thanks!.