kei-s (owner)

Forks

Revisions

gist: 7956 Download_button fork
public
Public Clone URL: git://gist.github.com/7956.git
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(){
       pblock.innerHTML = window.$("#timeline",data).html();
     });
   }, "html");
 },
})