careful, peeps. I too thought this mod was cool but it's not compatible with a few browsers such as Safari, and so you would lose the majority of the Mac users.
if you try to submit/edit link using TinyMCE, your whole site becomes unusable and Safari closes by itself.
the only solution currently is to disable the TinyMCE editor on Safari, and other incompatible browsers by adding something like:
Code:
{literal}
<script language="javascript" type="text/javascript">
tinyMCE.init({
mode : "exact",
elements : "bodytext",
theme : "advanced",
plugins : "advimage,advlink,emotions,iespell,insertdatetime,preview,media,visualchars,xhtmlxtras",
theme_advanced_buttons1 : "bold,italic,underline,|,justifyleft,justifycenter,justifyright,justifyfull,|,bullist,numlist,|,insertdate,inserttime,|,forecolor,backcolor,|,hr,removeformat,formatselect",
theme_advanced_buttons2 : "link,unlink,image,media,|,undo,redo,cleanup,|,code,preview",
theme_advanced_buttons3 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_path_location : "bottom",
extended_valid_elements : "a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]",
browsers : "msie,gecko,opera,safari"
});
</script>
{/literal}