Ticket #4172: 4172.patch

File 4172.patch, 1.2 KB (added by Frederico Caldeira Knabben, 15 years ago)
  • _source/plugins/htmldataprocessor/plugin.js

     
    66(function()
    77{
    88        // 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)$/;
    1011
    1112        var protectedSourceMarker = '{cke_protected}';
    1213
  • CHANGES.html

     
    224224                <li><a href="http://dev.fckeditor.net/ticket/4164">#4164</a> : Now it is possible to paste text
    225225                        in Source mode even if forcePasteAsPlainText = true.</li>
    226226                <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                        &lt;br&gt; was not been always added to blank lines ending with &amp;nbsp;.</li>
    227229        </ul>
    228230        <h3>
    229231                CKEditor 3.0 RC</h3>
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy