> Would a minor tweak to TW be a good idea so that the prompt says "send
> e-mail to.." ?
Try this simple plugin:
var createExternalLink_orig = createExternalLink;
window.createExternalLink = function(place, url) {
var link = createExternalLink_orig.apply(this, arguments);
if(url.startsWith("mailto:")) {
link.title = "send e-mail to " + url.substr(7);
}
return link;
}
HTH.
-- F.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---