Hello!
I am trying to override the default fast-double-click behaviour for one of my components. I am currently using the following code:
jQuery(document).on('cq-overlay-fast-dblclick', function(ev){ console.log('double clicked detected', ev.inspectable.type); if ( ev.inspectable.type == 'my/component/name' ) { // Do custom behaviour } });
This is great, however it is not clear how to prevent the default behaviour as it always displays the edit dialog?
Thanks for your help!
Dave