sly icon indicating copy to clipboard operation
sly copied to clipboard

remove all items?

Open chrisplusplus opened this issue 9 years ago • 1 comments

What is the best way to remove all sly items?

chrisplusplus avatar Oct 28 '15 16:10 chrisplusplus

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.

chrisplusplus avatar Oct 29 '15 15:10 chrisplusplus