Ticket #7639: 7639_3.patch
File 7639_3.patch, 602 bytes (added by , 14 years ago) |
---|
-
_source/plugins/selection/plugin.js
477 477 }); 478 478 479 479 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 ); 480 487 } 481 488 }); 482 489