Explorar el Código

Add missing semicolon in FlyControls

Tristan Valcke hace 8 años
padre
commit
9fbfbf75ed
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      examples/js/controls/FlyControls.js

+ 1 - 1
examples/js/controls/FlyControls.js

@@ -270,7 +270,7 @@ THREE.FlyControls = function ( object, domElement ) {
 		window.removeEventListener( 'keydown', _keydown, false );
 		window.removeEventListener( 'keyup', _keyup, false );
 
-	}
+	};
 
 	var _mousemove = bind( this, this.mousemove );
 	var _mousedown = bind( this, this.mousedown );