Changeset 1047
- Timestamp:
- 10/29/07 06:30:51 (6 years ago)
- Location:
- FCKeditor/trunk/editor/_source
- Files:
-
- 3 edited
-
classes/fckspecialcombo.js (modified) (1 diff)
-
classes/fcktoolbarbuttonui.js (modified) (1 diff)
-
internals/fckdomtools.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/_source/classes/fckspecialcombo.js
r779 r1047 193 193 this.Enabled = isEnabled ; 194 194 195 this._OuterTable.className = isEnabled ? '' : 'SC_FieldDisabled' ; 195 // In IE it can happen when the page is reloaded that _OuterTable is null, so check its existence 196 if ( this._OuterTable ) 197 this._OuterTable.className = isEnabled ? '' : 'SC_FieldDisabled' ; 196 198 } 197 199 -
FCKeditor/trunk/editor/_source/classes/fcktoolbarbuttonui.js
r779 r1047 128 128 var e = this.MainElement ; 129 129 130 // In IE it can happen when the page is reloaded that MainElement is null, so exit here 131 if ( !e ) 132 return ; 133 130 134 switch ( parseInt( newState, 10 ) ) 131 135 { -
FCKeditor/trunk/editor/_source/internals/fckdomtools.js
r1010 r1047 381 381 EnforcePaddingNode : function( doc, tagName ) 382 382 { 383 // In IE it can happen when the page is reloaded that doc or doc.body is null, so exit here 384 if ( !doc || !doc.body ) 385 return ; 386 383 387 this.CheckAndRemovePaddingNode( doc, tagName, true ) ; 384 388 if ( doc.body.lastChild && ( doc.body.lastChild.nodeType != 1
Note: See TracChangeset
for help on using the changeset viewer.
