Looking good, Harald - thanks for sharing!

I do have one minor suggestion though:
When hijacking createExternalLink, use apply instead of calling the
chainCreateExternalLink backup directly. This retains the original
context/scope, which should be a little more future-proof.

Here's a sample:
     (function() { // optional closure to create local scope

      var backup = original;
      original = function(foo, bar, baz) {
          backup.apply(this, arguments);
      }

     })();

HTH.


-- F.



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TiddlyWikiDev" 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/TiddlyWikiDev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to