> Now I only lack to be able to reset on a daily basis by removing a tag
> from all tiddlers tagged with "tagname" at once and then update them in
> the same action --
Try adding the following lines, just before the line that invokes
store.saveTiddler():
if (t.tags.contains('someTag'))
t.tags=t.tags.splice(t.tags.indexOf('someTag'),1);
enjoy,
-e
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---