Ticket #5144: 5144_2.patch
File 5144_2.patch, 774 bytes (added by , 13 years ago) |
---|
-
_source/plugins/clipboard/plugin.js
181 181 range = new CKEDITOR.dom.range( doc ); 182 182 183 183 // Create container to paste into 184 var pastebin = new CKEDITOR.dom.element( mode == 'text' ? 'textarea' : 'div', doc );184 var pastebin = new CKEDITOR.dom.element( mode == 'text' ? 'textarea' : CKEDITOR.env.webkit ? 'body' : 'div', doc ); 185 185 pastebin.setAttribute( 'id', 'cke_pastebin' ); 186 186 // Safari requires a filler node inside the div to have the content pasted into it. (#4882) 187 187 CKEDITOR.env.webkit && pastebin.append( doc.createText( '\xa0' ) );