Ticket #4172: 4172.patch
File 4172.patch, 1.2 KB (added by , 14 years ago) |
---|
-
_source/plugins/htmldataprocessor/plugin.js
6 6 (function() 7 7 { 8 8 // Regex to scan for at the end of blocks, which are actually placeholders. 9 var tailNbspRegex = /^[\t\r\n ]* $/; 9 // Safari transforms the to \xa0. (#4172) 10 var tailNbspRegex = /^[\t\r\n ]*(?: |\xa0)$/; 10 11 11 12 var protectedSourceMarker = '{cke_protected}'; 12 13 -
CHANGES.html
224 224 <li><a href="http://dev.fckeditor.net/ticket/4164">#4164</a> : Now it is possible to paste text 225 225 in Source mode even if forcePasteAsPlainText = true.</li> 226 226 <li><a href="http://dev.fckeditor.net/ticket/4129">#4129</a> : [FF]Unable to remove list with Ctrl-A.</li> 227 <li><a href="http://dev.fckeditor.net/ticket/4172">#4172</a> : [Safari] The trailing 228 <br> was not been always added to blank lines ending with &nbsp;.</li> 227 229 </ul> 228 230 <h3> 229 231 CKEditor 3.0 RC</h3>