Changeset 1111
- Timestamp:
- 2007-11-24 13:28:36 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/_source/classes/fckpanel.js
r1091 r1111 164 164 else 165 165 { 166 // Be sure we'll not have more than one Panel opened at the same time. 167 if ( FCKPanel._OpenedPanel ) 168 FCKPanel._OpenedPanel.Hide() ; 169 166 170 // Do not fire OnBlur while the panel is opened. 167 171 if ( typeof( FCK.ToolbarSet.CurrentInstance.FocusManager ) != 'undefined' ) … … 252 256 // Move the focus to the IFRAME so we catch the "onblur". 253 257 this._IFrame.contentWindow.focus() ; 258 259 FCKPanel._OpenedPanel = this ; 254 260 } 255 261