increased the controllers in the test to account for a monitor turned sideways

This commit is contained in:
Doug Fritz 2013-12-18 18:10:13 -08:00
parent ac83aa1b89
commit e35ced6ebc

View File

@ -1041,7 +1041,7 @@ console.log(c2.__checkbox.getAttribute('checked'));
var gui = new GUI(); var gui = new GUI();
// Add a lot of controllers. This will fail if you have some freakishly tall monitor. // Add a lot of controllers. This will fail if you have some freakishly tall monitor.
for (var i = 0; i < 50; i++) { for (var i = 0; i < 100; i++) {
gui.add({ x: 0 }, 'x'); gui.add({ x: 0 }, 'x');
} }