Changeset 4635
- Timestamp:
- 12/09/09 16:12:01 (3 years ago)
- Location:
- CKEditor/trunk
- Files:
-
- 2 edited
-
CHANGES.html (modified) (1 diff)
-
_source/plugins/dialog/plugin.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/CHANGES.html
r4634 r4635 91 91 <li><a href="http://dev.fckeditor.net/ticket/4690">#4690</a> : Fixed the parsing of nested inline elements.</li> 92 92 <li><a href="http://dev.fckeditor.net/ticket/4450">#4450</a> : Fixed selecting multiple table cells before apply justify commands generates spurious paragraph in Firefox.</li> 93 <li><a href="http://dev.fckeditor.net/ticket/4733">#4733</a> : Fixed dialog opening sometimes hang up Firefox and Safari.</li> 93 94 </ul> 94 95 <h3> -
CKEditor/trunk/_source/plugins/dialog/plugin.js
r4616 r4635 260 260 return; 261 261 262 var currentIndex = ( me._.currentFocusIndex + offset + focusList.length ) % focusList.length; 262 var startIndex = ( me._.currentFocusIndex + offset + focusList.length ) % focusList.length, 263 currentIndex = startIndex; 263 264 while ( !focusList[ currentIndex ].isFocusable() ) 264 265 { 265 266 currentIndex = ( currentIndex + offset + focusList.length ) % focusList.length; 266 if ( currentIndex == me._.currentFocusIndex )267 if ( currentIndex == startIndex ) 267 268 break; 268 269 }
Note: See TracChangeset
for help on using the changeset viewer.
