steveathon / bootstrap-wysiwyg

Tiny bootstrap-compatible WYSIWYG rich text editor
MIT License
663 stars 1.71k forks source link

Can't use the Hyperlink button in Chrome on Mac #7

Closed soitgoes closed 8 years ago

soitgoes commented 9 years ago

Hyper link dialog closes as soon as typing starts.

steveathon commented 9 years ago

I was sure I had fixed this once before - I will check it out. Did you do a quick code check? If not, no probs will check it out this weekend.

soitgoes commented 9 years ago

I confirmed on the example on the landing page but it might not be up to date.

rhpot1991 commented 9 years ago

Same thing for me, happens on the examples when I pull from source.

ducnvhn commented 9 years ago

same problem. I click on the add link btn and the drop-down appear but it will close as soon as I click on the input box to add link. any same issue ?

benwurth commented 9 years ago

I've got the same issue. Any ideas for workarounds?

codewithtyler commented 9 years ago

If you've setup your hyperlink button like in the examples then add the following script to your file to get it to work again. I'm adding it to my PR now so this will be fixed when my PR has been merged.

$(".dropdown-menu > input").click(function (e) {
        e.stopPropagation();
});