浏览代码

Add missing semicolon in webgl_geometry_spline_editor

Tristan Valcke 8 年之前
父节点
当前提交
d004f34353
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      examples/webgl_geometry_spline_editor.html

+ 4 - 4
examples/webgl_geometry_spline_editor.html

@@ -34,7 +34,7 @@
 				}
 				return str;
 
-			}
+			};
 
 			var container, stats;
 			var camera, scene, renderer;
@@ -172,13 +172,13 @@
 					transformControl.attach( e.object );
 					cancelHideTransorm(); // *
 
-				} )
+				} );
 
 				dragcontrols.on( 'hoveroff', function( e ) {
 
 					if ( e ) delayHideTransform();
 
-				} )
+				} );
 
 
 				controls.addEventListener( 'start', function() {
@@ -304,7 +304,7 @@
 				} else {
 
 					object.position.x = Math.random() * 1000 - 500;
-					object.position.y = Math.random() * 600
+					object.position.y = Math.random() * 600;
 					object.position.z = Math.random() * 800 - 400;
 
 				}