I am having trouble getting a class function to run periodically with mootools. It runs one fine, but then I get a function is undefined error. The related code can be seen here: http://gist.github.com/142298
|
feedback
|
|
You are not correctly calling the periodical function, see the MooTools documentation. In your example, you run the function once and try to use the periodical function on it's return value (hence your first message is logged directly, not after the 1000ms delay):
What you want is to periodically call the iterateClock function with a specified period, binding and arguments (as an array):
| |||
feedback
|