Ticket #7175: 7175.patch

File 7175.patch, 544 bytes (added by Kenrath, 13 years ago)

fix

  • .js

    old new  
    301301                                                // Set the panel frame focus, so the blur event gets fired.
    302302                                                CKEDITOR.tools.setTimeout( function()
    303303                                                {
    304                                                         iframe.$.contentWindow.focus();
     304                                                        if ( CKEDITOR.env.ie )
     305                                                                iframe.focus();
     306                                                        else
     307                                                                iframe.$.contentWindow.focus();
    305308                                                        // We need this get fired manually because of unfired focus() function.
    306309                                                        this.allowBlur( true );
    307310                                                }, 0, this);
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy