index.js
13 lines
| 708 B
| application/javascript
|
JavascriptLexer
| r2 | $(document).ready(function() { | |||
| /* Load up the Twitters and UI */ | ||||
| /* XXX This doesn't work anymore. | ||||
| $.getJSON('https://twitter.com/statuses/user_timeline/megatokyo.json?count=3&callback=?', function(obj) { | ||||
| $('#feed-twitter-megatokyo').append(twitterToHTML(obj)); | ||||
| $('#feed-twitter-megatokyo').hover(function(){ $(this).children('ul').show() }, function(){ $(this).children('ul').hide() }); | ||||
| }); | ||||
| $.getJSON('https://twitter.com/statuses/user_timeline/fredrin.json?count=3&callback=?', function(obj) { | ||||
| $('#feed-twitter-fredrin').append(twitterToHTML(obj)); | ||||
| $('#feed-twitter-fredrin').hover(function(){ $(this).children('ul').show() }, function(){ $(this).children('ul').hide() }); | ||||
| }); | ||||
| */ | ||||
| }); | ||||
