I have added an onClick event to an element in the CKeditor.
When I drag the element to a different location I lose the click event.
I think it is a bug that the events get lost when you drag the element. But I am trying to capture the end drag event of the element so that I can readd the click event to the element.
Is there any way to capture the end drag event?
When I drag the element to a different location I lose the click event.
//adding click event to the first child of a dynamically created ckeditor element currentWizardPlaceholder.getChild(0).on('click', handlePlaceholderEdit);
I think it is a bug that the events get lost when you drag the element. But I am trying to capture the end drag event of the element so that I can readd the click event to the element.
Is there any way to capture the end drag event?