Changeset 1366
- Timestamp:
- 2008-01-19 12:11:15 (9 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/branches/features/floating_dialog/editor/_source/internals/fckdialog.js
r1255 r1366 137 137 138 138 // Dummy URL for testing whether the code in fckdialog.js alone leaks memory. 139 // dialog.src = ' http://www.skype.com';139 // dialog.src = 'about:blank'; 140 140 141 141 dialog.frameBorder = 0 ; … … 171 171 FCKDomTools.RemoveNode( dialog ) ; 172 172 173 // Pop the dialog from the dialog stack, and disable dialog mode if the stack is empty. 174 if ( dialog._ParentDialog ) 173 if ( dialog._ParentDialog ) // Nested Dialog. 175 174 { 176 175 topDialog = dialog._ParentDialog ; 177 176 dialog._ParentDialog.contentWindow.SetEnabled( true ) ; 178 177 } 179 else 180 { 178 else // First Dialog. 179 { 180 FCK.Focus() ; 181 181 this.HideMainCover() ; 182 182 topDialog = null ;