Ticket #3929: 3929.patch
File 3929.patch, 1.2 KB (added by , 14 years ago) |
---|
-
_source/plugins/clipboard/dialogs/paste.js
106 106 editor = this.getParentEditor(), 107 107 html = iframe.$.contentWindow.document.body.innerHTML; 108 108 109 editor.insertHtml( html ); 109 // Insertion should happen after main document design mode turned on. 110 setTimeout( function(){ 111 editor.insertHtml( html ); 112 }, 0 ); 110 113 111 114 }, 112 115 -
CHANGES.html
44 44 <p> 45 45 Fixed issues:</p> 46 46 <ul> 47 <li><a href="http://dev.fckeditor.net/ticket/3929">#3929</a> : Using Paste dialog, 48 the text is pasted into current selection</li> 47 49 <li><a href="http://dev.fckeditor.net/ticket/3882">#3882</a> : Fixed an issue 48 50 with PasteFromWord dialog in which default values was ignored</li> 49 51 <li><a href="http://dev.fckeditor.net/ticket/3859">#3859</a> : Fixed Flash dialog layout in Webkit</li>