Ticket #3216: 3216_2.patch
File 3216_2.patch, 493 bytes (added by , 16 years ago) |
---|
-
_source/plugins/pastetext/plugin.js
22 22 return; 23 23 } 24 24 25 // Check if the selection is inside the editing area for IE. (#3216) 26 if ( !editor.getSelection() ) 27 editor.focus(); 25 28 text = clipboardData.getData( 'Text' ); 26 27 29 editor.insertText( text ); 28 30 } 29 31 };