Hi,
I just tried to update CKEditor 3.5 to 3.6. After updating I notices that the function window.opener.CKEDITOR.tools.callFunction is not working anymore.
In 3.5 I used the following code without problems: (from the CK documentation)
In 3.6 this function doesn't get called anymore. When I switch back to 3.5 everything works as expected.
I just tried to update CKEditor 3.5 to 3.6. After updating I notices that the function window.opener.CKEDITOR.tools.callFunction is not working anymore.
In 3.5 I used the following code without problems: (from the CK documentation)
window.opener.CKEDITOR.tools.callFunction( funcNum, fileUrl, function() {
// Get the reference to a dialog window.
var element, dialog = this.getDialog();
// Check if this is the Image dialog window.
if (dialog.getName() == 'link') {
// Get the reference to a text field that holds the "title"
attribute.
element = dialog.getContentElement( 'advanced', 'advTitle' );
if (element) {
element.setValue( trimTitle($('f_title').value) );
}
}
});In 3.6 this function doesn't get called anymore. When I switch back to 3.5 everything works as expected.
