Lines Matching defs:after
61 var t = type, detachcategory, after, i;
70 after = true;
85 // detach category, full type with instance prefix, is this an after listener, short type
86 return [detachcategory, (pre) ? _getType(t, pre) : t, after, t];
152 * This is the equivalent to <code>after</code> except the
163 var handle = this.after.apply(this, arguments);
185 * * whether or not this is an after listener,
202 * after the event name.
224 detachcategory, handle, store = Y.Env.evt.handles, after, adapt, shorttype,
227 // full name, args, detachcategory, after
231 after: parts[2]
249 after = type._after;
259 var nv = (after) ? AFTER_PREFIX : '';
274 after = parts[2];
322 handle = ce._on(fn, context, (arguments.length > 3) ? YArray(arguments, 3, true) : null, (after) ? 'after' : true);
520 * 'fireOnce': if an event is configured to fire once, new subscribers after
652 * parameter after the properties the object literal contains are copied to
732 * supplied callback will execute after any listeners add
733 * via the subscribe method, and after the default function,
736 * @method after
744 after: function(type, fn) {
750 return Y.Do.after.apply(Y.Do, arguments);
827 and a CSS selector string as the third argument after the callback function.
882 Listen for an event one time. Equivalent to `once()`, except, like `after()`,
883 the subscription callback executes after all `on()` subscribers and the event's
884 `defaultFn` (if configured) have executed. Like `after()` if any `on()` phase
885 subscriber calls `e.preventDefault()`, neither the `defaultFn` nor the `after()`
908 For events, `after()` subscribers are executed after the event's
915 injection. See <a href="../classes/Do.html#methods_after">`Y.Do.after`</a>
919 @see Do.after
920 @method after