Ticket #5766: 5766.patch
File 5766.patch, 988 bytes (added by , 13 years ago) |
---|
-
_source/plugins/wysiwygarea/plugin.js
14 14 var nonExitableElementNames = { table:1,pre:1 }; 15 15 16 16 // Matching an empty paragraph at the end of document. 17 var emptyParagraphRegexp = / \s*<(p|div|address|h\d|center)[^>]*>\s*(?:<br[^>]*>| |\u00A0| )?\s*(:?<\/\1>)?\s*(?=$|<\/body>)/gi;17 var emptyParagraphRegexp = /^\s*<(p|div|address|h\d|center)[^>]*>\s*(?:<br[^>]*>| |\u00A0| )?\s*(:?<\/\1>)?\s*(?=$|<\/body>)/gi; 18 18 19 19 function onInsertHtml( evt ) 20 20 { … … 703 703 if ( editor.dataProcessor ) 704 704 data = editor.dataProcessor.toDataFormat( data, fixForBody ); 705 705 706 // Strip the last blank paragraph within document.707 706 if ( config.ignoreEmptyParagraph ) 708 707 data = data.replace( emptyParagraphRegexp, '' ); 709 708