> i still get [object Object] with addition of join method
Oh right, of course - getTaggedTiddlers returns tiddler objects.
So you'll have to use the map method to extract the title property:
"[[" +
store.getTaggedTiddlers(tiddler.title).
map(function(item, i) {
return item.title;
}).
join("]] [[") +
"]]"
-- 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
-~----------~----~----~----~------~----~------~--~---