Hey all,
I’ve been having a hard time determining how to configure the default Twitter widget. I want to configure different features through the features object, but I don’t know what options are available beyond the ones specified with the default widget.
I’ve searched the dev site for documentation to no avail.
Thanks in advance!
/*
My default configuration
*/
new TWTR.Widget({
version: 2,
type: 'search',
search:'from:@kacyjames',
rpp: 4,
interval: 6000,
width: 300,
height: 300,
theme: {
shell: {
background: '#AAA',
color: '#333'
},
tweets: {
background: '#ffffff',
color: '#333',
links: '#558BBA'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
hashtags: true,
timestamp: true,
avatars: false,
retweets: false,
replies: false,
behavior: 'all'
}
}).render().start();