|
|
|
@@ -100,7 +100,7 @@ scenes["EVERY VIEW AAAAA"] = () => { |
|
|
|
function makeViewsScene(constructor, viewChoice) { |
|
|
|
return () => { |
|
|
|
Object.keys(constructor.constructor().views).forEach(view => { |
|
|
|
if (view.indexOf(viewChoice) >= 0) { |
|
|
|
if (viewChoice === undefined || view.indexOf(viewChoice) >= 0) { |
|
|
|
const entity = constructor.constructor() |
|
|
|
displayEntity(entity, view, 0, 1) |
|
|
|
} |
|
|
|
|