-
Type:
Bug
-
Resolution: Duplicate
-
Priority:
Medium
-
None
-
Affects Version/s: 2.9
-
Component/s: None
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);
}
- duplicates
-
CONFSERVER-17847 When inserting a link to an attachment in IE without specifying alias it inserts \^attachment as an alias
-
- Closed
-
- is related to
-
CONFSERVER-17847 When inserting a link to an attachment in IE without specifying alias it inserts \^attachment as an alias
-
- Closed
-
- relates to
-
CONFSERVER-10129 links created via the Rich Text Editor dialog insert the spacekey even when the target document is in the same space
-
- Closed
-