> On the PluginManager it shows: Error: Expected identifier, string or
> number
This error is typically caused by a trailing comma following the last
element of an object declaration. For example:
config.macros.myMacro = {
handler: function(...)
{...},
someValue: "text",
someFlag: true,
}
Note the last comma (,)... Most javascript interpreters handle it just
fine... but IE complains because there is no identifier, string or
number following that comma.
The fix is trivial: remove the extra trailing comma.
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.