GrapesJS / ckeditor

This plugin replaces the default Rich Text Editor with the one from CKEditor
BSD 3-Clause "New" or "Revised" License
105 stars 103 forks source link

On paste event #42

Closed bgrand-ch closed 3 years ago

bgrand-ch commented 3 years ago

Is it possible to use the paste event of ckeditor ?

Same as https://ckeditor.com/docs/ckeditor4/latest/guide/dev_clipboard.html

yucomds commented 3 years ago
    CKEDITOR.on('instanceReady', function (ev) {
        ev.editor.on('paste', function (ev) {
        //Your code here
        });
    });