Ticket #2496: 2496_1.patch
File 2496_1.patch, 1.2 KB (added by , 15 years ago) |
---|
-
_whatsnew.html
50 50 character inside text wasn't encoded in Opera and Safari.</li> 51 51 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2467">#2467</a>] Fixed JavaScript 52 52 error with the fit window command in source mode.</li> 53 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2496">#2496</a>] Using the Paste 54 dialogs in IE might insert the content at the start of the editor.</li> 53 55 </ul> 54 56 <p> 55 57 <a href="_whatsnew_history.html">See previous versions history</a></p> -
editor/fckdialog.html
409 409 */ 410 410 EnsureSelection : function() 411 411 { 412 // Move the focus to the Cancel button so even if the dialog contains a 413 // contentEditable element the selection is properly restored in the editor #2496 414 window.focus() ; 415 $( 'btnCancel' ).focus() ; 416 412 417 FCK.Selection.Restore() ; 413 418 }, 414 419