ryangiglio / jquery-tweetMachine

A jQuery plugin that allows you to create a streaming Twitter feed using their new REST API v1.1
MIT License
49 stars 16 forks source link

Not an issue, a typo #22

Open nytegoth opened 10 years ago

nytegoth commented 10 years ago

$('#tweets').tweetMachine('', { backendScript: '/inc/newBackend.php' endpoint: 'statuses/user_timeline', user_name: 'jason_alvis', include_retweets: true, exclude_replies: false, limit: 5, autoRefresh: false
});

Should Read Replace the ('#tweets') with ('.tweets') $('.tweets').tweetMachine('', { backendScript: '/inc/newBackend.php' endpoint: 'statuses/user_timeline', user_name: 'jason_alvis', include_retweets: true, exclude_replies: false, limit: 5, autoRefresh: false
});