Skip to content
Snippets Groups Projects
Commit 124a7a8d authored by srosse's avatar srosse
Browse files

OO-1870: remove onclick and change target for download links in wiki

parent 88fa4ad5
No related branches found
No related tags found
No related merge requests found
...@@ -93,7 +93,7 @@ public class WikiMarkupRenderer extends DefaultComponentRenderer { ...@@ -93,7 +93,7 @@ public class WikiMarkupRenderer extends DefaultComponentRenderer {
uri = URLDecoder.decode(uri, "utf-8"); uri = URLDecoder.decode(uri, "utf-8");
input.setVirtualWiki(uri.substring(1, uri.length()-1)); input.setVirtualWiki(uri.substring(1, uri.length()-1));
if (iframePostEnabled) { if (iframePostEnabled) {
String targetUrl = " onclick='o_XHREvent(jQuery(this).attr(\"href\"),false,true); return false;'"; String targetUrl = " onclick=\"o_XHREvent(jQuery(this).attr('href'),false,true); return false;\"";
input.setURLTarget(targetUrl); input.setURLTarget(targetUrl);
} }
sb.append("<div style=\"min-height:"+ wikiComp.getMinHeight() +"px\" id=\""); sb.append("<div style=\"min-height:"+ wikiComp.getMinHeight() +"px\" id=\"");
......
...@@ -35,6 +35,7 @@ function changeAnchorTargets(id) { ...@@ -35,6 +35,7 @@ function changeAnchorTargets(id) {
var pre = href.substr(0, href.indexOf(":1/")); var pre = href.substr(0, href.indexOf(":1/"));
var post = href.substr(href.indexOf(":1/")+3, href.length); var post = href.substr(href.indexOf(":1/")+3, href.length);
anchor.attr("href", pre+":0/"+post); anchor.attr("href", pre+":0/"+post);
anchor.prop('onclick', null).off('click');
} }
} else if (anchor.attr("class") == "edit" && anchor.attr("title").indexOf("Media:") != -1) { //media file not found } else if (anchor.attr("class") == "edit" && anchor.attr("title").indexOf("Media:") != -1) { //media file not found
href = href.substr(0, href.indexOf("Edit:topic")); href = href.substr(0, href.indexOf("Edit:topic"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment