Uploaded image for project: 'Confluence Data Center'
  1. Confluence Data Center
  2. CONFSERVER-13768

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

    XMLWordPrintable

Details

    Description

      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);
          }
      

      Attachments

        Issue Links

          Activity

            People

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

              Dates

                Created:
                Updated:
                Resolved: