this code doesn't work. How can I prevent context menu in fabrics?
canvas.on('mouse:up', function(options) {
if(options.target){
switch(options.e.button){
case 0:
// left click
break;
case 2:
// right click
options.e.preventDefault();
break;
}
}
});
You can add:
outside of
canvas.on('mouse:up'
...See jsFiddle