I'm searching for a way to get the data of the cut event in CKEditor. And i was looking within the sourcecode posted on github. But after trying to get the data on IE8, Mozilla(Mac) with the follow 2 examples
editor.editable().on('cut', function (ev) {
console.log(ev.dataValue);
});
editor.editable().on('cut', function (ev) {
console.log(ev.data.dataValue);
});
I couldn't find out what is the problem for not retrieving the data. Does somebody know how to retrieve the data from the cut event in CKEditor?