Ticket #7639: 7639_3.patch

File 7639_3.patch, 602 bytes (added by Sa'ar Zac Elias, 13 years ago)
  • _source/plugins/selection/plugin.js

     
    477477                                });
    478478
    479479                        editor.selectionChange = checkSelectionChangeTimeout;
     480
     481                        // IE9 might cease to work if there's an object selection inside the iframe (#7639).
     482                        CKEDITOR.env.ie9Compat && editor.on( 'destroy', function()
     483                        {
     484                                var sel = editor.getSelection();
     485                                sel && sel.getNative().clear();
     486                        }, null, null, 9 );
    480487                }
    481488        });
    482489
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy