Skip to content

Instantly share code, notes, and snippets.

@hlship
Created January 13, 2012 00:03
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 hlship/1603920 to your computer and use it in GitHub Desktop.
Save hlship/1603920 to your computer and use it in GitHub Desktop.
Publish/Subscribe example from Tapestry 5.3
(function() {
$(element).on("click", ".button", function(event, element) {
event.stop();
T5.pubsub.publish("button-clicked", this, element);
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment