在CKeditor中撤消事件

时间:2017-06-26 12:10:11

标签: ckeditor

当我们触发撤消事件时,我遇到了CKEditor慢响应,如果超过1000个段落     例如:

<p>1</p><p>2</p><p>3</p>....<p>1000</p>

1 个答案:

答案 0 :(得分:0)

您可以使用beforeCommandExec事件并检查撤消和重做事件。像editorInstance和CKEDITOR实例这样的东西。

    editorInstance.on('beforeCommandExec', function(e){
        if(e.data.name === 'undo') {
            // handle before undo
        }
        if(e.data.name === 'redo') {
            // handle before redo 
        }
    });