diff --git a/editor/dialog/fck_link.html b/editor/dialog/fck_link.html
index 6d69e6e..d9b537c 100755
|
a
|
b
|
|
| 281 | 281 | <input id="txtAttCharSet" style="WIDTH: 100%" type="text" /> |
| 282 | 282 | </td> |
| 283 | 283 | </tr> |
| 284 | | </table> |
| 285 | | <table cellspacing="0" cellpadding="0" width="100%" align="center" border="0"> |
| 286 | 284 | <tr> |
| 287 | 285 | <td> |
| 288 | 286 | <span fckLang="DlgGenStyle">Style</span><br /> |
| 289 | 287 | <input id="txtAttStyle" style="WIDTH: 100%" type="text" /> |
| 290 | 288 | </td> |
| | 289 | <td></td> |
| | 290 | <td valign="top"> |
| | 291 | <span fckLang="DlgGenRel">Link Relationship</span><br /> |
| | 292 | <input id="txtAttRel" style="WIDTH: 100%" type="text" /> |
| | 293 | </td> |
| 291 | 294 | </tr> |
| 292 | 295 | </table> |
| 293 | 296 | </div> |
diff --git a/editor/dialog/fck_link/fck_link.js b/editor/dialog/fck_link/fck_link.js
index 817b3e1..52c7788 100755
|
a
|
b
|
|
| 474 | 474 | GetE('txtAttAccessKey').value = oLink.accessKey ; |
| 475 | 475 | GetE('txtAttTabIndex').value = oLink.tabIndex <= 0 ? '' : oLink.tabIndex ; |
| 476 | 476 | GetE('txtAttTitle').value = oLink.title ; |
| | 477 | GetE('txtAttRel').value = oLink.rel ; |
| 477 | 478 | GetE('txtAttContentType').value = oLink.type ; |
| 478 | 479 | GetE('txtAttCharSet').value = oLink.charset ; |
| 479 | 480 | |
| … |
… |
|
| 766 | 767 | SetAttribute( oLink, 'accesskey', GetE('txtAttAccessKey').value ) ; |
| 767 | 768 | SetAttribute( oLink, 'tabindex' , ( GetE('txtAttTabIndex').value > 0 ? GetE('txtAttTabIndex').value : null ) ) ; |
| 768 | 769 | SetAttribute( oLink, 'title' , GetE('txtAttTitle').value ) ; |
| | 770 | SetAttribute( oLink, 'rel' , GetE('txtAttRel').value ) ; |
| 769 | 771 | SetAttribute( oLink, 'type' , GetE('txtAttContentType').value ) ; |
| 770 | 772 | SetAttribute( oLink, 'charset' , GetE('txtAttCharSet').value ) ; |
| 771 | 773 | |