Ticket #7922: 7922.patch

File 7922.patch, 578 bytes (added by Sa'ar Zac Elias, 12 years ago)
  • _source/plugins/button/plugin.js

     
    8989                        },
    9090                        execute : function()
    9191                        {
    92                                 this.button.click( editor );
     92                                // IE 6 needs some time before execution (#7922)
     93                                if ( CKEDITOR.env.ie && CKEDITOR.env.version < 7 )
     94                                        CKEDITOR.tools.setTimeout( function(){ this.button.click( editor ); }, 0, this );
     95                                else
     96                                        this.button.click( editor );
    9397                        }
    9498                };
    9599
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy