I'm looping over each values of an array to create Highcharts graphs on the client webpage. The problem is that it lags a bit because it do the each iteration a little too fast.
So my idea is to do something like this:
 {{#each containersToCreateChart}}  
 some html that I need to do for each one  
 then wait X milliseconds
 and do the next iteration
 {{/each}}
 
     
    