Ticket #3438: 3438.patch

File 3438.patch, 1.8 KB (added by Tobiasz Cudnik, 15 years ago)
  • _source/plugins/floatpanel/plugin.js

     
    115115                                var left        = position.x + ( offsetX || 0 ),
    116116                                        top             = position.y + ( offsetY || 0 );
    117117
    118                                 if ( ( rtl && ( corner == 1 || corner == 4 ) ) || ( !rtl && ( corner == 2 || corner == 3 ) ) )
     118                                // Floating panels are off by (-1px, 0px) in RTL mode. (#3438)
     119                                if ( rtl && ( corner == 1 || corner == 4 ) )
     120                                        left += offsetParent.$.offsetWidth;
     121                                else if ( !rtl && ( corner == 2 || corner == 3 ) )
    119122                                        left += offsetParent.$.offsetWidth - 1;
    120123
    121124                                if ( corner == 3 || corner == 4 )
  • CHANGES.html

     
    4848                <li><a href="http://dev.fckeditor.net/ticket/3528">#3528</a> : Fixed Context Menu issue when triggered using Shift+F10.</li>
    4949                <li><a href="http://dev.fckeditor.net/ticket/4028">#4028</a> : Maximize control's tool tip was wrong once it is maximized.</li>
    5050                <li><a href="http://dev.fckeditor.net/ticket/4237">#4237</a> : ToolBar is chopped off in Safari browser 3.x.</li>
    51                 <li><a href="http://dev.fckeditor.net/ticket/4269">#4269</a> : "Esc" and "Enter" keystrokes were not handled when a dialogue box is opened which causes the form post automatically.</li>               
     51                <li><a href="http://dev.fckeditor.net/ticket/4269">#4269</a> : "Esc" and "Enter" keystrokes were not handled when a dialogue box is opened which causes the form post automatically.</li>
     52                <li><a href="http://dev.fckeditor.net/ticket/3438">#3438</a> : Floating panels are off by (-1px, 0px) in RTL mode.</li>         
    5253        </ul>
    5354        <h3>
    5455                CKEditor 3.0</h3>
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy