Browse Source

Remove unnecessary comma in NodeBuilder

Tristan Valcke 8 years ago
parent
commit
92340ca5ea
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/js/nodes/NodeBuilder.js

+ 1 - 1
examples/js/nodes/NodeBuilder.js

@@ -67,7 +67,7 @@ THREE.NodeBuilder.prototype = {
 	addSlot : function( name ) {
 	addSlot : function( name ) {
 
 
 		this.slots.push( {
 		this.slots.push( {
-			name : name || '',
+			name : name || ''
 		} );
 		} );
 
 
 		return this.update();
 		return this.update();