Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Twitter Widget - NaN-NaN-NaN at IE8 #3

Open
bebraw opened this issue Feb 19, 2012 · 1 comment
Open

Twitter Widget - NaN-NaN-NaN at IE8 #3

bebraw opened this issue Feb 19, 2012 · 1 comment

Comments

@bebraw
Copy link
Contributor

bebraw commented Feb 19, 2012

IE8 seems to be missing some date property we are currently using. Investigate and fix.

@unxed
Copy link

unxed commented Feb 17, 2013

replace
tweet.created_at_timestamp = Date.parse(item.created_at);"
with
var d = item.created_at.split(' ');
tweet.created_at_timestamp = Date.parse(d[1]+" "+d[2]+", "+d[5]+" "+d[3]+" UTC");

in twitter widget js code to fix it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants