One more thing to make it all run smoothly in stupid ie as well...

*TiddlyLinkClosingCurrentTiddlerPlugin*
*
*

> /***
> |''Name''|TiddlyLinkClosingCurrentTiddlerPlugin|
> |''Description''|closes the current tiddler when clicking a tiddlyLink 
> holding the shift key|
> |''Author''|[[Yakov|http://yakov.tiddlyspace.com]]|
> |''Version''|1.0|
> |''Source''|add.your.path.here|
> ***/
> //{{{
> onClickTiddlerLinkWithoutShiftKey = onClickTiddlerLink;
> onClickTiddlerLink = function (ev) {
>     if ((ev || window.event).shiftKey) {
>         var tid = story.findContainingTiddler(this);
>         if (tid) {
>             story.closeTiddler(tid.getAttribute("tiddler"));
>         }
>     }
>     return onClickTiddlerLinkWithoutShiftKey(ev);
> }
> //}}}


Find the difference ;-)

Cheers, Tobias.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWikiDev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywikidev?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to