Ticket #5638: 5638.patch
File 5638.patch, 841 bytes (added by , 15 years ago) |
---|
-
_source/plugins/wysiwygarea/plugin.js
13 13 // List of elements in which has no way to move editing focus outside. 14 14 var nonExitableElementNames = { table:1,pre:1 }; 15 15 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;16 // Matching an empty paragraph or sinlge line-break at the end of document. 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 {