﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
7899	window.opener.CKEDITOR.tools.callFunction not working in CKEditor 3.6	bart-rcs		"Today I was updating CKEditor from 3.5 to 3.6 and I noticed that the window.opener.CKEDITOR.tools.callFunction is not working anymore.

In 3.5 I used the following code without problems: 

{{{
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 the above code is not working anymore. When I switch back to 3.5 it's working again.
"	Bug	closed	Normal		General	3.6	invalid		
