Ticket #3417: 3417_2.patch
File 3417_2.patch, 580 bytes (added by , 16 years ago) |
---|
-
_source/plugins/toolbar/plugin.js
40 40 if ( editor.toolbox ) 41 41 { 42 42 editor.toolbox.focusCommandExecuted = true; 43 editor.toolbox.focus(); 43 44 // Make the first button focus accessible. (#3417) 45 if ( CKEDITOR.env.ie ) 46 setTimeout( function(){ editor.toolbox.focus(); }, 100 ); 47 else 48 editor.toolbox.focus(); 44 49 } 45 50 } 46 51 }