Skip to content

Instantly share code, notes, and snippets.

@jhubert
Created November 14, 2012 20:32
Show Gist options
  • Save jhubert/4074583 to your computer and use it in GitHub Desktop.
Save jhubert/4074583 to your computer and use it in GitHub Desktop.
YUI Event management between widgets under the same view [pseudo code]
​View:
initializer:
this.widget1 = new Y.Widget
this.widget2 = new Y.Widget
this.widget1.addTarget(this)
this.widget2.addTarget(this)
this.widget1.on('blah', this.widget2.handleBlah, this)
this.widget2.on('blah', this.widget1.handleBlah, this)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment