From 15865667744fc21485a660eb6ca471cb77741dea Mon Sep 17 00:00:00 2001 From: Jeff Nusz Date: Fri, 23 Sep 2016 12:43:24 -0700 Subject: [PATCH] tidy up example --- example.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/example.html b/example.html index e215343..046f16a 100644 --- a/example.html +++ b/example.html @@ -16,8 +16,8 @@ noiseStrength: 10.2, growthSpeed: 0.2, - type: 'chrome', - + type: 'three', + explode: function () { alert('Bang!'); }, @@ -40,7 +40,7 @@ gui.add(obj, 'height').step(5); // Increment amount // Choose from accepted values - gui.add(obj, 'type', [ 'pizza', 'chrome', 'hooray' ] ); + gui.add(obj, 'type', [ 'one', 'two', 'three' ] ); // Choose from named values gui.add(obj, 'speed', { Stopped: 0, Slow: 0.1, Fast: 5 } );