Ticket #5504: 5504.patch
File 5504.patch, 593 bytes (added by , 15 years ago) |
---|
-
_source/plugins/clipboard/plugin.js
28 28 // the command to execute. 29 29 body.on( command, onExec ); 30 30 31 doc.$.execCommand( command ); 31 // IE6/7: document.execCommand has problem to paste into positioned element. (#5504) 32 ( CKEDITOR.env.ie8 ? doc.$ : doc.$.selection.createRange() ) [ 'execCommand' ]( command ); 32 33 33 34 body.removeListener( command, onExec ); 34 35