Ticket #3438: 3438.patch
File 3438.patch, 1.8 KB (added by , 14 years ago) |
---|
-
_source/plugins/floatpanel/plugin.js
115 115 var left = position.x + ( offsetX || 0 ), 116 116 top = position.y + ( offsetY || 0 ); 117 117 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 ) ) 119 122 left += offsetParent.$.offsetWidth - 1; 120 123 121 124 if ( corner == 3 || corner == 4 ) -
CHANGES.html
48 48 <li><a href="http://dev.fckeditor.net/ticket/3528">#3528</a> : Fixed Context Menu issue when triggered using Shift+F10.</li> 49 49 <li><a href="http://dev.fckeditor.net/ticket/4028">#4028</a> : Maximize control's tool tip was wrong once it is maximized.</li> 50 50 <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> 52 53 </ul> 53 54 <h3> 54 55 CKEditor 3.0</h3>