Changeset 706
- Timestamp:
- 01/30/07 12:14:40 (6 years ago)
- Files:
-
- 1 modified
-
trunk/modules/InternetExplorer/InternetExplorer.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/InternetExplorer/InternetExplorer.js
r703 r706 424 424 var sel = this.getSelection(); 425 425 var r = sel.createRange(); 426 r.collapse(); 427 r.text = this.cc; 426 if ( sel.type == 'Control' ) 427 { 428 var control = r.item(0); 429 control.outerHTML += this.cc; 430 } 431 else 432 { 433 r.collapse(); 434 r.text = this.cc; 435 } 428 436 } 429 437 };
