Lines Matching defs:timeout
11 * To get a timeout for non-global functions, just call
12 * delay.add(func, timeout).
22 add: function (func, timeout) {
25 return window.setTimeout('timer.execDispatch(' + id + ')', timeout);
32 * To call a function with a delay, just create a new Delay(func, timeout) and
35 function Delay (func, timeout) {
37 if (timeout) {
38 this.timeout = timeout;
44 timeout: 500,
54 DEPRECATED('don\'t use the Delay object, use window.timeout with a callback instead');
58 this.timeout);