Skip to content

Instantly share code, notes, and snippets.

@jpemberthy
Created June 16, 2009 17:17
Show Gist options
  • Save jpemberthy/130778 to your computer and use it in GitHub Desktop.
Save jpemberthy/130778 to your computer and use it in GitHub Desktop.
var twitter = jetpack.lib.twitter
jetpack.statusBar.append({
html: "foooo",
width: 90,
onReady: function(widget){
$(widget).click(function(){
twitter.getTwitLatestStatus( "jpemberthy", function(tweet){
var newTweet = tweet.text;
jetpack.notifications.show( newTweet );
});
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment