I'm trying to move to Shindig...
I'm getting an exception early on in a request: "D is undefined". The
call stack starts at:
gadgets.config.init({"core.util":{"dynamic-height":{},"views":
{},"setprefs":{},"opensocial-0.8":{}}});
The exception is on the following line. Unfortunately, it's
obfuscated. I've re-formatted as much as I can:
for ( var F in A )
{
if ( A.hasOwnProperty(F) )
{
var E = A[F],D = H[F],B = E.validators; // EXCEPTION HERE
if ( !G )
{
for ( var C in B )
{
if ( B.hasOwnProperty(C) )
{
if ( !B[C](D[C]) )
{
throw new Error('Invalid config value "' + D
[C] + '" for parameter "' + C + '" in component "' + F + '"')
}
}
}
}
if ( E.callback )
{
E.callback(H)
}
}
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Implementing OpenSocial Containers" 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/opensocial-container?hl=en
-~----------~----~----~----~------~----~------~--~---