> config.options.chkShowRightSidebar==false;

"==" is the "is equal to" comparison operator.  As a result, the above
JS statement simply calculates a true/false value, and then does
nothing with it.  In contrast, "=" (note just ONE equal sign) is the
"assignment" operator.  The value on the right side is stored in the
variable on the left side.  Thus, in your [[zzConfig]] tiddler, you
should write:

config.options.chkShowRightSidebar=false;

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
-~----------~----~----~----~------~----~------~--~---

Reply via email to