Browse Source

Remove unnecessary comma in ShadowMapViewer

Tristan Valcke 8 years ago
parent
commit
a4ac61806c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/js/utils/ShadowMapViewer.js

+ 1 - 1
examples/js/utils/ShadowMapViewer.js

@@ -39,7 +39,7 @@ THREE.ShadowMapViewer = function ( light ) {
 		x: 10,
 		x: 10,
 		y: 10,
 		y: 10,
 		width: 256,
 		width: 256,
-		height: 256,
+		height: 256
 	};
 	};
 
 
 	var camera = new THREE.OrthographicCamera( window.innerWidth / - 2, window.innerWidth / 2, window.innerHeight / 2, window.innerHeight / - 2, 1, 10 );
 	var camera = new THREE.OrthographicCamera( window.innerWidth / - 2, window.innerWidth / 2, window.innerHeight / 2, window.innerHeight / - 2, 1, 10 );