Ticket #39570: 39570.patch
| File 39570.patch, 771 bytes (added by , 9 years ago) |
|---|
-
src/wp-includes/js/tinymce/plugins/wordpress/plugin.js
540 540 541 541 editor.on( 'PastePostProcess', function( event ) { 542 542 // Remove empty paragraphs 543 e ach( dom.select( 'p', event.node ), function(node ) {543 editor.$( 'p', event.node ).each( function( i, node ) { 544 544 if ( dom.isEmpty( node ) ) { 545 545 dom.remove( node ); 546 546 } 547 547 }); 548 549 if ( tinymce.isIE ) { 550 editor.$( 'a', event.node ).find( 'font, u' ).each( function( i, node ) { 551 dom.remove( node, true ); 552 }); 553 } 548 554 }); 549 555 } 550 556