Ticket #5293: 5293.patch
File 5293.patch, 754 bytes (added by , 13 years ago) |
---|
-
_source/plugins/wysiwygarea/plugin.js
696 696 docType = fullPage && editor.docType, 697 697 doc = iframe.getFrameDocument(); 698 698 699 // BR at the end of document is mozilla editor bogus node (#5293). 700 if ( CKEDITOR.env.gecko ) 701 { 702 var last = doc.getBody().getLast(); 703 if ( last.type == CKEDITOR.NODE_ELEMENT && last.is( 'br' ) ) 704 last.remove(); 705 } 706 699 707 var data = fullPage 700 708 ? doc.getDocumentElement().getOuterHtml() 701 709 : doc.getBody().getHtml();