Currently you can't edit a link in the Bubble theme -- the tooltip appears clickable (shows pointer cursor -- not sure why exactly as I don't see in the the CSS). So currently with Bubble you can't edit a link at all -- since if you reselect the link text and click the link button it will just remove the link.
Steps for Reproduction
Expected behavior:
Tooltip with link url shows, but is editable
Actual behavior:
Tooltip with link url shows
Platforms:
Chrome 57
Version:
1.2.2
@jhchen although the edit feature will be cool. Users would expect clicking the tooltip would open the link in a new window with the pointer displaying. Currently, it doesn't. Is this a bug or simply a display tooltip? I tried clicking all over the tooltip. Snow theme works as expected.
This is simply a display tooltip at the moment.
@jhchen I would love to take this up, what should be the behavior of the tooltip should it be just clickable or should it have edit options as well? Any pointers from your end?
Behavior-wise it should work like Medium's.
Any update on this?
For behaviour I would expect clicking the actual link going to the link destination. The on-hover tooltip could have an edit link if needed, most important thing is that links actually work.
Reiterating @mfjordvald's sentiment, any updates on this feature?
Yes, please !!! <3
@mfjordvald @eamodio @annezhou920 made it work with custom solution, no theme updates required, check the gif below. I can share my solution if anyone is interested

@DenisBun can you please share your solution? I am interested in. Thanks in advance
@dnp1204 it requires some event manipulations, u may check my repo https://github.com/DenisBun/react-text-editor (src/Editor.js)
@jhchen Is there any update on this feature? When can we expect this to be coming?
Anyone has any update on this feature?
I ended up creating this link module extension to allow link editing.
Default Quill behavior: Clicking the link icon while linked text is selected will simply remove the link.
New behavior: Clicking the link icon while linked text is selected will behave more like a link editor. To remove the link, just delete the url text and hit enter.
const toolbar = quill.getModule('toolbar');
toolbar.addHandler('link', formatTextToLink => {
if (formatTextToLink) {
quill.theme.tooltip.edit();
} else {
quill.theme.tooltip.edit('link', quill.getFormat().link);
}
});
Most helpful comment
Any update on this?
For behaviour I would expect clicking the actual link going to the link destination. The on-hover tooltip could have an edit link if needed, most important thing is that links actually work.