Ticket #6000: 6000.patch
File 6000.patch, 840 bytes (added by , 13 years ago) |
---|
-
_source/plugins/wysiwygarea/plugin.js
463 463 }); 464 464 465 465 // Gecko/Webkit need some help when selecting control type elements. (#3448) 466 if ( !( CKEDITOR.env.ie || CKEDITOR.env.opera ) )466 if ( !( CKEDITOR.env.ie || CKEDITOR.env.opera ) ) 467 467 { 468 468 domDocument.on( 'mousedown', function( ev ) 469 469 { … … 556 556 557 557 doc.getDocumentElement().focus(); 558 558 range && range.select(); 559 560 561 // The frame will scroll to top on focus (#6000) 562 sel && setTimeout( function(){ sel.scrollIntoView(); }, 0 ); 559 563 } 560 564 561 565 editor.focusManager.focus();