Changeset 1944
- Timestamp:
- 2008-04-30 04:33:31 (3 months ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 2 modified
-
editor/_source/internals/fckdialog.js (modified) (2 diffs)
-
_whatsnew.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/_source/internals/fckdialog.js
r1805 r1944 219 219 220 220 FCKFocusManager.Lock() ; 221 222 // Prevent the user from refocusing the disabled 223 // editing window by pressing Tab. (Bug #2065) 224 var el = FCK.ToolbarSet.CurrentInstance.GetInstanceObject( 'frameElement' ) ; 225 el._fck_originalTabIndex = el.tabIndex ; 226 el.tabIndex = -1 ; 221 227 }, 222 228 … … 225 231 FCKDomTools.RemoveNode( cover ) ; 226 232 FCKFocusManager.Unlock() ; 233 234 // Revert the tab index hack. (Bug #2065) 235 var el = FCK.ToolbarSet.CurrentInstance.GetInstanceObject( 'frameElement' ) ; 236 el.tabIndex = el._fck_originalTabIndex ; 237 FCKDomTools.ClearElementJSProperty( el, '_fck_originalTabIndex' ) ; 227 238 }, 228 239 -
FCKeditor/trunk/_whatsnew.html
r1943 r1944 54 54 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2124">#2124</a>] PHP file brower: fixed 55 55 issue with resolving paths on Windows servers with PHP 5.2.4/5.2.5.</li> 56 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2 124">#2059</a>] Fixed the error in the56 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2059">#2059</a>] Fixed the error in the 57 57 toolbar name in fckeditor.py.</li> 58 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2065">#2065</a>] Floating dialogs will now 59 block the user from re-selecting the editing area by pressing Tab.</li> 58 60 </ul> 59 61 <h3>