Hello,
I try to get a preview of all my STL files in the Webbrowser but
only the last loaded STL File is visible. The previous loaded stl
files are grey. debug shows no errors.
var list = document.getElementsByClassName("3D");
for (var i = 0; i < list.length; i++) {
thingiview = new Thingiview(list[i].id);
thingiview.initScene();
thingiview.loadSTL(list[i].getAttribute('src'));
};