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

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yulius-fxpal committed Nov 17, 2017
1 parent b854389 commit 4433971
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build/datguivr.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/datguivr.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/datguivr.min.js

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion examples/shredder.html
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,8 @@
scaleX: .1,
scaleY: 3,
scaleZ: 15,
scale: 0.25
scale: 0.25,
foo: 'bar'
};


Expand All @@ -518,6 +519,7 @@
gui.add( params, 'scaleY', 0, 20 ).step( 0.1 );
gui.add( params, 'scaleZ', 0, 20 ).step( 0.1 );
gui.add( params, 'scale', 0, 2 ).step( 0.01 );
gui.add( params, 'foo').listen();



Expand Down
2 changes: 1 addition & 1 deletion modules/datguivr/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ const GUIVR = (function DATGUIVR(){
const text = createText({
textCreator, propertyName, object
});
controllers.push( label );
controllers.push( text );
return label;
}

Expand Down

0 comments on commit 4433971

Please sign in to comment.