Ticket #7922: 7922.patch
File 7922.patch, 578 bytes (added by , 12 years ago) |
---|
-
_source/plugins/button/plugin.js
89 89 }, 90 90 execute : function() 91 91 { 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 ); 93 97 } 94 98 }; 95 99