Lines Matching +refs:val +refs:obj
53 setter: function(val) { this._setFoldTriggers(); return val; },
158 * @param {Object} obj The DOM object to attach the trigger event to
161 addTrigger: function(obj, type) {
162 if (! obj || ! type) {
176 this._triggers.push( Y.on(type, wrappedFetch, obj, this) );
186 * @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
188 addCustomTrigger: function(name, obj) {
199 if (Y.Lang.isUndefined(obj)) {
203 this._triggers.push( obj.on(name, wrappedFetch, this) );