views:

291

answers:

1

i am using this simile timeline with large amounts of data and i keep getting firefox popping up saying "a script has appeared to no longer be running, do you want to kill it"? is there a limit to the amount of json you can send back to it. I have about 1000 different timeline points with dates, descriptions, etc.

+2  A: 

That will always happen if your script takes longer to process the data than the limit in Firefox (you can change the default, but it'll still affect your other users).

Timeline allows you to reduce that by reducing the number of points loaded to only the ones needed to show. Use addOnScrollListener to reload the data in the band so that the number of datapoints loaded is reduced.

jneves