Browse Source

Added missing semicolons

Jesper Oskarsson 10 years ago
parent
commit
0a2a0a066c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docs/api/core/Raycaster.html

+ 2 - 2
docs/api/core/Raycaster.html

@@ -23,8 +23,8 @@
 			// calculate mouse position in normalized device coordinates
 			// (-1 to +1) for both components
 
-			mouse.x = ( event.clientX / window.innerWidth ) * 2 - 1
-			mouse.y = - ( event.clientY / window.innerHeight ) * 2 + 1		
+			mouse.x = ( event.clientX / window.innerWidth ) * 2 - 1;
+			mouse.y = - ( event.clientY / window.innerHeight ) * 2 + 1;		
 		
 		}