Hey,
the instance ready callback doesn't work in chrome and opera, it only works in firefox... I haven't tried IE.
the "key" callback works fine in all browsers for me
the instance ready callback doesn't work in chrome and opera, it only works in firefox... I haven't tried IE.
ckEditor.on(
'instanceReady',
function() {
parent.setInterval(
function() {
try {
onChangeCallback();
}
catch(e) {
}
},
2000
);
}
);
the "key" callback works fine in all browsers for me
ckEditor.on( 'key', function() {
try {
onChangeCallback();
}
catch(e) {
}
}
);
