Explorar el Código

Add missing semicolon in FirstPersonControls

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

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

@@ -269,7 +269,7 @@ THREE.FirstPersonControls = function ( object, domElement ) {
 		window.removeEventListener( 'keydown', _onKeyDown, false );
 		window.removeEventListener( 'keyup', _onKeyUp, false );
 
-	}
+	};
 
 	var _onMouseMove = bind( this, this.onMouseMove );
 	var _onMouseDown = bind( this, this.onMouseDown );