If you crack open plugins/_quicktags.php and find this segment and add the red bits it should do what you want :-
function b2evoInsertLink(myField, i, defaultValue) {
if (!defaultValue) {
defaultValue = 'http://';
}
if (!b2evoCheckOpenTags(i)) {
var URL = prompt('<?php echo T_('URL') ?>:' ,defaultValue);
if (URL) {
b2evoButtons
If you crack open plugins/_quicktags.php and find this segment and add the red bits it should do what you want :-
function b2evoInsertLink(myField, i, defaultValue) {
.tagStart = '<a href="' + URL + '" target="_blank">';if (!defaultValue) {
defaultValue = 'http://';
}
if (!b2evoCheckOpenTags(i)) {
var URL = prompt('<?php echo T_('URL') ?>:' ,defaultValue);
if (URL) {
b2evoButtons
Please note :- this is will not validate as xhtml strict.
¥