Skip to content
Snippets Groups Projects
Commit b43a17ac authored by Michael Große's avatar Michael Große
Browse files

Add pipe to end of link pasted w/o title

It is helpful if the pipe is still inserted by the linkwizard when there
is no title. This increases usability for beginners.
parent dfe7cc3f
No related branches found
No related tags found
No related merge requests found
......@@ -244,9 +244,10 @@ var dw_linkwiz = {
so += dw_linkwiz.val.open.length;
link = dw_linkwiz.val.open+link;
}
link += '|';
so += 1;
if(stxt) {
link += '|'+stxt;
so += 1;
link += stxt;
}
if(dw_linkwiz.val.close) {
link += dw_linkwiz.val.close;
......
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