Changeset 6567 for CKEditor/trunk
- Timestamp:
- 03/18/11 08:19:54 (2 years ago)
- Location:
- CKEditor/trunk/_source/plugins
- Files:
-
- 2 edited
-
forms/dialogs/hiddenfield.js (modified) (1 diff)
-
link/dialogs/anchor.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/_source/plugins/forms/dialogs/hiddenfield.js
r6348 r6567 31 31 value = this.getValueOf( 'info', 'value' ), 32 32 editor = this.getParentEditor(), 33 element = CKEDITOR.env.ie ? editor.document.createElement( '<input name="' + CKEDITOR.tools.htmlEncode( name ) + '">' ) : editor.document.createElement( 'input' ); 33 element = CKEDITOR.env.ie && !( CKEDITOR.document.$.documentMode >= 8 ) ? 34 editor.document.createElement( '<input name="' + CKEDITOR.tools.htmlEncode( name ) + '">' ) 35 : editor.document.createElement( 'input' ); 34 36 35 37 element.setAttribute( 'type', 'hidden' ); -
CKEditor/trunk/_source/plugins/link/dialogs/anchor.js
r6348 r6567 27 27 // Always create a new anchor, because of IE BUG. 28 28 var name = this.getValueOf( 'info', 'txtName' ), 29 element = CKEDITOR.env.ie ?29 element = CKEDITOR.env.ie && !( CKEDITOR.document.$.documentMode >= 8 ) ? 30 30 editor.document.createElement( '<a name="' + CKEDITOR.tools.htmlEncode( name ) + '">' ) : 31 31 editor.document.createElement( 'a' );
Note: See TracChangeset
for help on using the changeset viewer.
