Browse Source

Remove unneeded comma in AmbiantLight

Tristan Valcke 8 years ago
parent
commit
3abc44cceb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lights/AmbientLight.js

+ 1 - 1
src/lights/AmbientLight.js

@@ -18,7 +18,7 @@ AmbientLight.prototype = Object.assign( Object.create( Light.prototype ), {
 
 	constructor: AmbientLight,
 
-	isAmbientLight: true,
+	isAmbientLight: true
 
 } );