• Is it possible to use timeouts from timeouts safely?

    Sadly with 2vxx (and maybe earlier) it seems that you can end up with your timeouts not being called on time. You could use events instead of setTimeout(0)...

     E.on('update', function() {
      updatePending = false; 
      //...
    });
    
    E.emit('update');
    

    But I actually just fixed this - so in 2v06 when released (or a cutting edge build) you'll be fine

About

Avatar for Gordon @Gordon started