mcfearsome (owner)

Fork Of

Revisions

gist: 9182 Download_button fork
public
Public Clone URL: git://gist.github.com/9182.git
Embed All Files: show embed
twitter-timeline-ubiquity #
1
2
3
4
5
6
7
8
9
10
11
12
CmdUtils.CreateCommand({
 name: "twitter-timeline",
 description: "Browse Twitter Timeline",
 preview: function(pblock, directObject) {
   var twitterHome = "http://twitter.com/home";
   jQuery.get( twitterHome, {}, function(data) {
     CmdUtils.loadJQuery(function(jQuery){
       pblock.innerHTML = jQuery("#timeline",data).html();
     });
   }, "html");
 },
})