Skip to content
This repository was archived by the owner on Sep 7, 2022. It is now read-only.

Commit 4433971

Browse files
committed
fix typo
1 parent b854389 commit 4433971

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

build/datguivr.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/datguivr.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/datguivr.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/shredder.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,8 @@
497497
scaleX: .1,
498498
scaleY: 3,
499499
scaleZ: 15,
500-
scale: 0.25
500+
scale: 0.25,
501+
foo: 'bar'
501502
};
502503

503504

@@ -518,6 +519,7 @@
518519
gui.add( params, 'scaleY', 0, 20 ).step( 0.1 );
519520
gui.add( params, 'scaleZ', 0, 20 ).step( 0.1 );
520521
gui.add( params, 'scale', 0, 2 ).step( 0.01 );
522+
gui.add( params, 'foo').listen();
521523

522524

523525

modules/datguivr/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ const GUIVR = (function DATGUIVR(){
294294
const text = createText({
295295
textCreator, propertyName, object
296296
});
297-
controllers.push( label );
297+
controllers.push( text );
298298
return label;
299299
}
300300

0 commit comments

Comments
 (0)