Changeset 1504 for FCKeditor/trunk/editor/dialog/fck_radiobutton.html
- Timestamp:
- 2008-02-11 19:14:35 (8 months ago)
- Files:
-
- 1 modified
-
FCKeditor/trunk/editor/dialog/fck_radiobutton.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/dialog/fck_radiobutton.html
r1398 r1504 61 61 oEditor.FCKUndo.SaveUndoStep() ; 62 62 63 if ( !oActiveEl ) 64 { 65 oActiveEl = oEditor.FCK.EditorDocument.createElement( 'INPUT' ) ; 66 oActiveEl.type = 'radio' ; 67 oActiveEl = oEditor.FCK.InsertElement( oActiveEl ) ; 68 } 69 70 if ( GetE('txtName').value.length > 0 ) 71 oActiveEl.name = GetE('txtName').value ; 63 oActiveEl = CreateNamedElement( oEditor, oActiveEl, 'INPUT', {name: GetE('txtName').value, type: 'radio' } ) ; 72 64 73 65 if ( oEditor.FCKBrowserInfo.IsIE )