Hi everyone,
I have easily installed the Fave Widget on the website I’m currently creating since last week and so far it had been working great.
Until yesterday when, on page load, the following error showed on the Firebug console : ‘o is undefined’ on line 12 of widget.js
As a consequence the widget is not rendered and that makes me sad 
All I did was copy pasting the output code from Twitter :
<script charset="utf-8" src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'faves',
rpp: 10,
interval: 30000,
title: 'Flux Twitter des Joueurs',
subject: 'Top Tweets',
width: 250,
height: 300,
theme: {
shell: {
background: '#bb3321',
color: '#ffffff'
},
tweets: {
background: '#ffffff',
color: '#444444',
links: '#000000'
}
},
features: {
scrollbar: true,
loop: false,
live: true,
behavior: 'all'
}
}).render().setUser('toptweets').start();
</script>
Does anyone have any idea what might have happened, or have the same problem ?
Thanks in advance for your help, and have a good day 
Vincent