Ticket #3856: 3856.patch
File 3856.patch, 2.2 KB (added by , 15 years ago) |
---|
-
_source/plugins/sourcearea/plugin.js
86 86 holderElement.append( textarea ); 87 87 textarea.setStyles( styles ); 88 88 89 textarea.on( 'blur', function() 90 { 91 editor.focusManager.blur(); 92 }); 93 94 textarea.on( 'focus', function() 95 { 96 editor.focusManager.focus(); 97 }); 98 89 99 // The editor data "may be dirty" after this point. 90 100 editor.mayBeDirty = true; 91 101 -
_source/plugins/wysiwygarea/plugin.js
412 412 } ); 413 413 } 414 414 415 var focusTarget = ( CKEDITOR.env.ie || CKEDITOR.env. safari) ?415 var focusTarget = ( CKEDITOR.env.ie || CKEDITOR.env.webkit ) ? 416 416 domWindow : domDocument; 417 417 418 418 focusTarget.on( 'blur', function() -
CHANGES.html
48 48 <li><a href="http://dev.fckeditor.net/ticket/3528">#3528</a> : Fixed Context Menu issue when triggered using Shift+F10.</li> 49 49 <li><a href="http://dev.fckeditor.net/ticket/4028">#4028</a> : Maximize control's tool tip was wrong once it is maximized.</li> 50 50 <li><a href="http://dev.fckeditor.net/ticket/4237">#4237</a> : ToolBar is chopped off in Safari browser 3.x.</li> 51 <li><a href="http://dev.fckeditor.net/ticket/4269">#4269</a> : "Esc" and "Enter" keystrokes were not handled when a dialogue box is opened which causes the form post automatically.</li> 51 <li><a href="http://dev.fckeditor.net/ticket/4269">#4269</a> : "Esc" and "Enter" keystrokes were not handled when a dialogue box is opened which causes the form post automatically.</li> 52 <li><a href="http://dev.fckeditor.net/ticket/3856">#3856</a> : Fixed focus and blur events in source view mode.</li> 52 53 </ul> 53 54 <h3> 54 55 CKEditor 3.0</h3>