I have used 'piggyback' to be able to catch object:hover events mentioned here: https://github.com/kangax/fabric.js/wiki/Working-with-events
Assume standard setup and these events:
canvas.on('object:over', function(e) {
// some manipulation with e.target here, will execute on hover as expected
canvas.renderAll.bind(canvas);
});
canvas.on('after:render', function() {
// code here wont execute on hover but only after other action which evokes render, such as click and drag of object
})
Is there other way to force rerendering the canvas(es) on mouse hover of an object?
If you wonder what is my goal, I want to highlight objects on mouse over, very similar to something like this: http://www.html5canvastutorials.com/demos/labs/html5-canvas-world-map-svg-path-with-kineticjs/index.php
Thank you very much for help!
canvas.renderAll()in "object:over" callback? – kangax Jan 25 at 19:12