> 1) I have firebug, but have no idea how to use it or what to look for, > did you see the error while running the macro?
First step: when an error in code occurs, the little green bug (lower right corner of browser status bar) changes to a red bug. Click on that to see the error message (if any) I've never actually read any documentation for FireBug... but I'm sure there is some. > 2) What would be a good reference for proper K&R identation? http://en.wikipedia.org/wiki/Indent_style I tend to use either K&R or 1TBS style, along with my own 'line saving' variations where I will sometimes put multiple statements on a single line if they are all part of a single 'phrase', e.g., these statements: for (var i=0; i<list.length; i++) if (...list[i]...) results.push (list[i]); effectively say: "select items from list and copy to results". -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 -~----------~----~----~----~------~----~------~--~---
