From a4458ce389bd00ce399c64416331e66db7791314 Mon Sep 17 00:00:00 2001 From: Thomas FORGIONE Date: Mon, 6 Jul 2015 17:29:59 +0200 Subject: [PATCH] jsHint again --- js/l3d/src/cameras/FixedCamera.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/l3d/src/cameras/FixedCamera.js b/js/l3d/src/cameras/FixedCamera.js index 7226bf0..495a40b 100644 --- a/js/l3d/src/cameras/FixedCamera.js +++ b/js/l3d/src/cameras/FixedCamera.js @@ -19,10 +19,10 @@ L3D.FixedCamera = function(arg1, arg2, arg3, arg4, position, target) { this.target = target.clone(); -} +}; L3D.FixedCamera.prototype = Object.create(THREE.PerspectiveCamera.prototype); L3D.FixedCamera.prototype.constructor = L3D.FixedCamera; L3D.FixedCamera.prototype.look = function() { this.lookAt(this.target); -} +};