Ticket #6375: 6375_2.patch

File 6375_2.patch, 605 bytes (added by Frederico Caldeira Knabben, 14 years ago)
  • _source/plugins/selection/plugin.js

     
    174174                                                {
    175175                                                        editor.on( 'blur', function( evt )
    176176                                                        {
    177                                                                 editor.document && editor.document.$.selection.empty();
     177                                                                // Try/Catch to avoid errors if the editor is hidden. (#6375)
     178                                                                try
     179                                                                {
     180                                                                        editor.document && editor.document.$.selection.empty();
     181                                                                }
     182                                                                catch (e) {}
    178183                                                        });
    179184                                                }
    180185
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy