Changeset 308 for FCKeditor/trunk/editor/dialog/fck_form.html
- Timestamp:
- 2007-05-18 17:59:45 (18 months ago)
- Files:
-
- 1 modified
-
FCKeditor/trunk/editor/dialog/fck_form.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/dialog/fck_form.html
r132 r308 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > 2 2 <!-- 3 3 * FCKeditor - The text editor for Internet - http://www.fckeditor.net … … 58 58 if ( !oActiveEl ) 59 59 { 60 oActiveEl = oEditor.FCK.EditorDocument.createElement( 'FORM' ) ; 61 oActiveEl = oEditor.FCK.InsertElementAndGetIt( oActiveEl ) ; 62 oActiveEl.innerHTML = ' ' ; 60 oActiveEl = oEditor.FCK.InsertElement( 'form' ) ; 61 62 if ( oEditor.FCKBrowserInfo.IsGeckoLike ) 63 oActiveEl.innerHTML = GECKO_BOGUS ; 63 64 } 64 65 65 66 oActiveEl.name = GetE('txtName').value ; 66 SetAttribute( oActiveEl, 'action' , GetE('txtAction').value ) ;67 SetAttribute( oActiveEl, 'action', GetE('txtAction').value ) ; 67 68 oActiveEl.method = GetE('txtMethod').value ; 68 69