Lines Matching refs:after
10 * Allows for the insertion of methods that are executed before or after
67 * <p>Execute the supplied method after the specified function. Wrapping
78 * other after phase wrappers.</dd>
84 * @method after
93 after: function(fn, obj, sFn, c) {
104 * Execute the supplied method before or after the specified function.
105 * Used by <code>before</code> and <code>after</code>.
108 * @param when {string} before or after
151 * Detach a before or after subscription.
176 * by 'after' event listeners.
185 * 'after' event listeners, and updated if an after subscriber
207 this.after = {};
219 this.after[sid] = fn;
235 delete this.after[sid];
242 * function nor any after phase subscribers will be executed.</p>
257 af = this.after,
288 // execute after methods.
327 * from the core method to the caller. Useful for Do.after subscribers.