Changeset 1677 for FCKeditor/branches
- Timestamp:
- 2008-03-04 09:48:33 (9 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/branches/features/generic_plugin/editor/_source/internals/fckdocumentprocessor.js
r1675 r1677 255 255 { 256 256 if ( original.getAttribute( 'width' ) > 0 ) 257 placeHolder Image.style.width = FCKTools.ConvertHtmlSizeToStyle( original.getAttribute( 'width' ) ) ;257 placeHolder.style.width = FCKTools.ConvertHtmlSizeToStyle( original.getAttribute( 'width' ) ) ; 258 258 259 259 if ( original.getAttribute( 'height' ) > 0 ) 260 placeHolder Image.style.height = FCKTools.ConvertHtmlSizeToStyle( original.getAttribute( 'height' ) ) ;260 placeHolder.style.height = FCKTools.ConvertHtmlSizeToStyle( original.getAttribute( 'height' ) ) ; 261 261 } 262 262 }, … … 275 275 { 276 276 if ( original.getAttribute( 'width' ) > 0 ) 277 placeHolder Image.style.width = FCKTools.ConvertHtmlSizeToStyle( original.getAttribute( 'width' ) ) ;277 placeHolder.style.width = FCKTools.ConvertHtmlSizeToStyle( original.getAttribute( 'width' ) ) ; 278 278 279 279 if ( original.getAttribute( 'height' ) > 0 ) 280 placeHolder Image.style.height = FCKTools.ConvertHtmlSizeToStyle( original.getAttribute( 'height' ) ) ;280 placeHolder.style.height = FCKTools.ConvertHtmlSizeToStyle( original.getAttribute( 'height' ) ) ; 281 281 } 282 282 }