darsain / sly

JavaScript library for one-directional scrolling with item based navigation support.
http://darsa.in/sly
2.87k stars 497 forks source link

remove all items? #229

Open chrisplusplus opened 8 years ago

chrisplusplus commented 8 years ago

What is the best way to remove all sly items?

chrisplusplus commented 8 years ago

I'm doing it this way for now:

                for(var i=slyobject.items.length;i>=0;i--){

                    slyobject.remove(i);
                }

But since the remove method calls reload each time, I don't know that this is the most efficient way to remove all items.