I am using angular 7's Drag n Drop and I have placed it in a div:
<div class="myDiv" cdkDrag (dblclick)="toggleDraggable($event)">Div Content Here</div>
So what I need to do is that when I double click on this div above the cdkDrag toggles on and off.
Either disappearing or not. Just need to toggle the draggable.
How can I do this?