Ticket #7222: 7222.patch
File 7222.patch, 782 bytes (added by , 14 years ago) |
---|
-
_source/plugins/wysiwygarea/plugin.js
422 422 } 423 423 424 424 range.select(); 425 // Notify non-IE that selection has changed. 426 if ( !CKEDITOR.env.ie ) 427 { 428 // Make sure next selection change is correct. (#6811) 429 editor.forceNextSelectionCheck(); 430 editor.selectionChange(); 431 } 432 } 425 // Cancel this selection change in favor of the next (correct). (#6811) 426 evt.cancel(); 427 } 433 428 434 429 // All browsers are incapable to moving cursor out of certain non-exitable 435 430 // blocks (e.g. table, list, pre) at the end of document, make this happen by