In Quill, I prepared a special span (just changing the background color) of some text. Now I would like to fire up a popup when a user clicks or double-clicks on that span. Doing that, it seems that Quill intercepts the event (which is not unexpected) but probably stops the propagation. Is there a way to make Quill not stop the propagation and allow for remaining click handlers to be called ?
I tried a
$("#idOfMySpan").unbind('click');
before binding with my handler but it doesn't work.
Thanks !
Damir