Hi all,
I gave a try to Anywhere "connect", and I have a weird issue, even if
I'm using the official example provided on the website.
Here is what I'm doing :
twttr.anywhere(function(twitter)
{
if (twitter.isConnected)
{
alert(twitter.User.current.data("screen_name"));
}
else
{
twitter("#connectArea").connectButton({size: "large"});
}
});
But this is what I got from firefox and Chrome :
"twitter.User.current.data is not a function
[Break on this error] alert(twitter.User.current.data("screen_name"));
"
Any hints?
Thanks!
--
To unsubscribe, reply using "remove me" as the subject.