Changeset 4033
- Timestamp:
- 07/31/09 10:22:11 (4 years ago)
- Location:
- CKEditor/trunk
- Files:
-
- 2 edited
-
CHANGES.html (modified) (1 diff)
-
_source/plugins/pastetext/plugin.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/CHANGES.html
r4030 r4033 222 222 <li><a href="http://dev.fckeditor.net/ticket/4147">#4147</a> : Unify style text normalization logic when comparing styles.</li> 223 223 <li><a href="http://dev.fckeditor.net/ticket/4150">#4150</a> : Fixed enlarge list result incorrect at the inner boundary of block.</li> 224 <li><a href="http://dev.fckeditor.net/ticket/4164">#4164</a> : Now it is possible to paste text 225 in Source mode even if forcePasteAsPlainText = true.</li> 224 226 </ul> 225 227 <h3> -
CKEditor/trunk/_source/plugins/pastetext/plugin.js
r3329 r4033 47 47 editor.on( 'beforePaste', function( event ) 48 48 { 49 setTimeout( function() { command.exec(); }, 0 ); 50 event.cancel(); 49 if ( editor.mode == "wysiwyg" ) 50 { 51 setTimeout( function() { command.exec(); }, 0 ); 52 event.cancel(); 53 } 51 54 }, 52 55 null, null, 20 );
Note: See TracChangeset
for help on using the changeset viewer.
