It seems when I create a Javascript object in a gadget on my shindig server,
even as simple as
var foo = {};
it comes with attributes: '___FROZEN___' 'toString_canCall___'
'length_canRead___' 'isPrototypeOf_canCall___' 'toLocaleString_canCall___'
'valueOf_canCall___' and possibly others.
How can I control, or disable this feature?Is this caused by Caja - and if so, again, how do I turn it off? I tried deleting the caja line from features.txt, but that made the server throw exceptions when running any Javascript at all. I must be missing some pretty basic documentation somewhere...

