Changeset 5452
- Timestamp:
- 05/11/10 17:31:38 (3 years ago)
- Location:
- CKEditor/trunk
- Files:
-
- 2 edited
-
CHANGES.html (modified) (1 diff)
-
_source/plugins/selection/plugin.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/CHANGES.html
r5451 r5452 70 70 <li><a href="http://dev.fckeditor.net/ticket/5433">#5433</a> : English protocol text directions in Link dialog are not incorrect in 'rtl' UI languages.</li> 71 71 <li><a href="http://dev.fckeditor.net/ticket/5553">#5553</a> : Paste dialog clipboard area text direction is incorrect for 'rtl' content languages.</li> 72 <li><a href="http://dev.fckeditor.net/ticket/4734">#4734</a> : Font size resets when font name is changed in an empty numbered list.</li> 72 73 </ul> 73 74 <h3> -
CKEditor/trunk/_source/plugins/selection/plugin.js
r5336 r5452 210 210 { 211 211 var doc = editor.document, 212 sel = doc && doc.$.selection; 212 sel = editor.getSelection(), 213 nativeSel = sel && sel.getNative(); 213 214 214 215 // There is a very specific case, when clicking … … 220 221 // such situation we have to test the range, to 221 222 // be sure it's valid. 222 if ( testIt && sel && sel.type == 'None' )223 if ( testIt && nativeSel && nativeSel.type == 'None' ) 223 224 { 224 225 // The "InsertImage" command can be used to … … 233 234 } 234 235 235 savedRange = sel && sel.createRange();236 savedRange = nativeSel && sel.getRanges()[ 0 ]; 236 237 237 238 checkSelectionChangeTimeout.call( editor );
Note: See TracChangeset
for help on using the changeset viewer.
