Lines Matching +refs:val +refs:obj
51 setter: function(val) { this._setFoldTriggers(); return val; },
156 * @param {Object} obj The DOM object to attach the trigger event to
159 addTrigger: function(obj, type) {
160 if (! obj || ! type) {
174 this._triggers.push( Y.on(type, wrappedFetch, obj, this) );
184 * @param {Object} obj The object on which to attach the event. <code>obj</code> is optional - by default the event is attached to the <code>Y</code> instance
186 addCustomTrigger: function(name, obj) {
197 if (Y.Lang.isUndefined(obj)) {
201 this._triggers.push( obj.on(name, wrappedFetch, this) );