From c6fa132dc2d88f29a547f7b000f076dd755adba5 Mon Sep 17 00:00:00 2001 From: James Pollack Date: Fri, 2 Oct 2015 10:44:26 -0700 Subject: [PATCH] cleanup --- examples/toys/ping_pong_gun/pingPongGun.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/examples/toys/ping_pong_gun/pingPongGun.js b/examples/toys/ping_pong_gun/pingPongGun.js index 7afb467eb0..b3545ce529 100644 --- a/examples/toys/ping_pong_gun/pingPongGun.js +++ b/examples/toys/ping_pong_gun/pingPongGun.js @@ -36,14 +36,14 @@ x: 0.04, y: 0.04, z: 0.04 - } + }; var BALL_COLOR = { red: 255, green: 255, blue: 255 - } + }; PingPongGun.prototype = { hand: null, @@ -87,8 +87,7 @@ _t.whichHand = null; this.canShootTimeout = Script.setTimeout(function() { _t.canShoot = false; - - }, 250) + }, 250); } },