Created
November 18, 2010 13:19
-
-
Save linusthe3rd/704959 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//================== | |
// Track a widget | |
//================== | |
var actionButtons = new ActionButtons(); //ActionButtons now needs to be destroyed!! | |
this._childWidgets.push(actionButtons); | |
//================== | |
// Track an event handler | |
//================== | |
var handle = dojo.connect( /*your params*/ ); | |
this._connectHandles.push( handle ); | |
//================== | |
// Track a topic | |
//================== | |
var topic = dojo.subscribe( /* your params */ ); | |
this._topics.push( topic ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment