util.nextFrame(callback [, context, ...args])
Tell the browser to schedule the callback
function to be called before the next repaint.
This is a cross-browser version of the window.requestAnimationFrame
function. It returns an ID of the frame request.
You can optionally pass a context
for your callback function. Any further arguments are passed as arguments to the callback function.