wysihtml5光标跳到新行的错误位置

时间:2014-08-08 18:31:02

标签: javascript jquery jquery-plugins wysihtml5 bootstrap-wysihtml5

当'返回'或者'输入'被击中,光标不跟随实际线。这个问题有解决方案吗?这个插件有一些问题可以解决这个问题,但我很好奇实际解决方案是什么解决方法。

这是一个基于项目的jQuery插件:https://github.com/jhollingworth/bootstrap-wysihtml5/你可以看到错误:http://jhollingworth.github.io/bootstrap-wysihtml5/(点击输入几次)

1 个答案:

答案 0 :(得分:2)

此问题已在on the project's GitHub page中讨论过。

修正为mentioned in the above thread

// "commenting these lines (5869 and 5870) in wysihtml5-0.3.0.js fixes it:
// composer.commands.exec("insertLineBreak");
// event.preventDefault();"
// 
// Example:

if (keyCode === wysihtml5.ENTER_KEY && !wysihtml5.browser.insertsLineBreaksOnReturn())  {
    //composer.commands.exec("insertLineBreak");
    //event.preventDefault();
}