Lines Matching refs:after
129 * Listens for the "after" moment of events fired by the host,
130 * or injects code "after" a given method on the host.
134 * @param strMethod {String} The event to listen for, or method to inject logic after.
135 * @param fn {Function} The handler function. For events, the "after" moment listener. For methods, the function to execute after the given method is executed.
144 } else if (host.after) { // event
169 * Listens for the "after" moment of events fired by the host object.
180 var handle = this.get("host").after(type, fn, context || this);
203 * Injects a function to be executed after a given method on host object.
208 * @param {String} method The name of the method to inject the function after.
214 var handle = Y.Do.after(fn, this.get("host"), strMethod, context || this);