Open Dominis13 opened 9 years ago
I am also facing same issue. Url is inserting at the beginning of editor.
FF 35.0.1 Ubuntu 14.10, link insertion is not working :( In Chrome works with the issue described here
Hi guys, i was able to solve this: need to clear mouseout event coz it saves wrong selection:
editor.attr('contenteditable', true)
.on('mouseup keyup mouseout', function () {
saveSelection();
updateToolbar();
});
also for someone who's looking for support of IE11 there is bug with the focus of the input for creating link. Solution is following:
need to wrap these lines:
input.data(options.selectionMarker, color);
input.focus();
with setTimeout, like:
setTimeout(function(){
input.data(options.selectionMarker, color);
})
setTimeout(function() {
input.focus();
})
enjoy
I found bug with link insertion. Can be easy reproduced on demo.
Bug happens in Chrome. Can't reproduce in FF