I just upgraded from TW v2.60 to v2.65 and it was mostly smooth
sailing. Thanks for that folks!
However I have a small problem with the RandomLinkMacro now. Namely it
won't work on the first click. On the second click and later it works
fine.

Firebug gives me this error on first click:
title is null:
title = title.replace(/_/g, "__").replace(/ /g, "_");

I have checked Tobi Beer's site (http://tobibeer.tiddlyspace.com/
#RandomLinkMacro) but there's no update for this macro yet. Maybe he
reads this. :)

The code line Firebug mentions is part of the Story function by the
way, not of the plugin itself:
//--
//-- Story functions
//--
function Story(containerId,idPrefix)
{
this.container = containerId;
this.idPrefix = idPrefix;
this.highlightRegExp = null;
this.tiddlerId = function(title) {
title = title.replace(/_/g, "__").replace(/ /g, "_");
var id = this.idPrefix + title;
return id==this.container ? this.idPrefix + "_" + title : id;
};
this.containerId = function() {
return this.container;
};
}

-- 
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.

Reply via email to