I am not certain what you need. If you need access to the tiddler in the
sense of the information the wiki uses than you can use this:
When you call the widget use this:
<$widget tiddler='Some Tiddler Name'/>
And have this in the code:
var tiddler = this.getAttribute("tiddler",
this.getVariable('currentTiddler'));
then you can have this to get the text of the tiddler:
var tiddlerObject = this.getTiddler(tiddler);
if (tiddlerObject) {
tiddlerText = tiddlerObject.fields.text;
//Whatever your code is here
}
--
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 https://groups.google.com/group/tiddlywikidev.
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywikidev/1c3a6d91-3072-4dda-b32c-cb9e133955cd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.