Insert Link in RTE does not correctly convert the link in IE

XMLWordPrintable

      In Internet Explorer, the Insert Link popup isn't cleaning up links in RTE.

      For example: [TST:Home] should be converted to [Home]. This is due to the following code not working in confluence/editor_plugin_src:

          // setOuterHTML
          if (tinymce.isIE) {
              replySpan.outerHTML = html; // todo check why this doesn't work
          }
          else {
              //alert(DWRUtil.toDescriptiveString(replySpan));
             var r = replySpan.ownerDocument.createRange();
             r.setStartBefore(replySpan);
             var df = r.createContextualFragment(html);
             replySpan.parentNode.replaceChild(df, replySpan);
          }
      

              Assignee:
              Unassigned
              Reporter:
              Brian Nguyen (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved: