Changeset 536
- Timestamp:
- 07/22/06 15:16:26 (7 years ago)
- Files:
-
- 1 modified
-
trunk/htmlarea.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/htmlarea.js
r535 r536 6730 6730 try 6731 6731 { 6732 // if the property is innerHTML, null can't be used because it is interpreted as null.toString() 6733 // we need to blank it instead 6734 if ( P == 'innerHTML' ) 6735 { 6736 O[P] = ''; 6737 } 6738 else 6732 // if it is the innerHTML property, just do nothing 6733 if ( P !== 'innerHTML' ) 6739 6734 { 6740 6735 // need to unhide TD cells before delete them or they will leak in IE 6741 if ( P &&O[P] && O[P].tagName && O[P].tagName.toLowerCase() == 'td' )6736 if ( O[P] && O[P].tagName && O[P].tagName.toLowerCase() == 'td' ) 6742 6737 { 6743 6738 O[P].style.display = '';
