Skip to content

Instantly share code, notes, and snippets.

@mollifier
Created December 5, 2009 15:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mollifier/249729 to your computer and use it in GitHub Desktop.
Save mollifier/249729 to your computer and use it in GitHub Desktop.
// Jetpack Feature : hello-statusbar.js
// ステータスバーのラベルをクリックすると通知する
jetpack.statusBar.append({
html: "Hello",
width: 45,
onReady: function(widget){
$(widget).click(function() {
jetpack.notifications.show("Hello Jetpack!");
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment