The forum operates in read-only mode. Please head to StackOverflow for support.
I was referring to version 2.6.4 and I found the answer:FCKConfig.DefaultLinkTarget = '_self' ;See http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_Options/DefaultLinkTarget
Re: Set link default target to _blank
I'd also like LinkBrowser and LinkUpload back too.
Re: Set link default target to _blank
I was referring to version 2.6.4 and I found the answer:
FCKConfig.DefaultLinkTarget = '_self' ;
See http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_Options/DefaultLinkTarget
Re: Set link default target to _blank
Re: Set link default target to _blank
Re: Set link default target to _blank
/ckeditor/plugins/link/dialogs/link.js
Changes
label:a.lang.common.target,'default':'notSet' --> label:a.lang.common.target,'default':'_blank'
label:a.lang.link.targetFrameName,'default':'' --> label:a.lang.link.targetFrameName,'default':'_blank'
If this approach does not work for any reason, please let me know.
Re: Set link default target to _blank
Re: Set link default target to _blank
Find: label:D.target,'default':'notSet'
Replace by: label:D.target,'default':'_blank'
Find: label:E.targetFrameName,'default':''
Replace by: label:E.targetFrameName,'default':'_blank'
Re: Set link default target to _blank