Ticket #3856: 3856.patch

File 3856.patch, 2.2 KB (added by Tobiasz Cudnik, 15 years ago)
  • _source/plugins/sourcearea/plugin.js

     
    8686                                                        holderElement.append( textarea );
    8787                                                        textarea.setStyles( styles );
    8888
     89                                                        textarea.on( 'blur', function()
     90                                                                {
     91                                                                        editor.focusManager.blur();
     92                                                                });
     93
     94                                                        textarea.on( 'focus', function()
     95                                                                {
     96                                                                        editor.focusManager.focus();
     97                                                                });
     98
    8999                                                        // The editor data "may be dirty" after this point.
    90100                                                        editor.mayBeDirty = true;
    91101
  • _source/plugins/wysiwygarea/plugin.js

     
    412412                                                        } );
    413413                                                }
    414414
    415                                                 var focusTarget = ( CKEDITOR.env.ie || CKEDITOR.env.safari ) ?
     415                                                var focusTarget = ( CKEDITOR.env.ie || CKEDITOR.env.webkit ) ?
    416416                                                                domWindow : domDocument;
    417417
    418418                                                focusTarget.on( 'blur', function()
  • CHANGES.html

     
    4848                <li><a href="http://dev.fckeditor.net/ticket/3528">#3528</a> : Fixed Context Menu issue when triggered using Shift+F10.</li>
    4949                <li><a href="http://dev.fckeditor.net/ticket/4028">#4028</a> : Maximize control's tool tip was wrong once it is maximized.</li>
    5050                <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>
    5253        </ul>
    5354        <h3>
    5455                CKEditor 3.0</h3>
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy