> The offending line of code: > config.commands.deleteTiddler.sendToTrash(collected[i]);
That function takes just one argument: a tiddler title, and all it does is to add some tags to the indicated tiddler, so I don't see how that function could be interfering with a loop in the calling code Try this test: comment out the call to sendToTrash(), and add this line in its place: alert(collected[i]); You should get a message box for each title. If you don't, then that means that something is going wrong with your loop, even before sendToTrash() gets a chance to do anything. If you do get a message box for each title, then remove the comment from the sendToTrash() call... but leave the alert()... do you *still* get a message box for each title? Let me know what you find out... -e --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" 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/TiddlyWikiDev?hl=en -~----------~----~----~----~------~----~------~--~---
