Slide 53
Slide 53 text
initializer: function () {
this._handles = [];
},
destructor: function () {
Y.Array.each(this._handles, function (h) {
h.detach();
});
this._handles = null;
},
bindUI: function () {
this._handles.push(Y.on(
"click",
this.click,
this,
"#foo"
));
}, ...
Thursday, November 15, 12