> Try this simple plugin:
Minor tweaks to prevent possible clashes with other plugins hijacking*
the createExternalLink function:
(function() {
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;
};
})();
-- F.
* http://www.tiddlywiki.org/wiki/Dev:Hijacking#Example
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---