From 32b68f568ba9cd0288f4066d7ae11d364e33f59b Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Wed, 4 Aug 2010 12:38:19 -0700 Subject: [PATCH] Adding the new keyword again --- framework/assets/js/accelerometer.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/framework/assets/js/accelerometer.js b/framework/assets/js/accelerometer.js index 4bade650..106d17ae 100644 --- a/framework/assets/js/accelerometer.js +++ b/framework/assets/js/accelerometer.js @@ -4,8 +4,6 @@ function Acceleration(x, y, z) this.y = y; this.z = z; this.timestamp = new Date().getTime(); - this.win = null; - this.fail = null; } var accelListeners = []; @@ -76,7 +74,7 @@ Accelerometer.prototype.gotCurrentAcceleration = function(key, x, y, z) Accelerometer.prototype.watchAcceleration = function(successCallback, errorCallback, options) { // TODO: add the interval id to a list so we can clear all watches var frequency = (options != undefined)? options.frequency : 10000; - var accel = Acceleration(0,0,0); + var accel = new Acceleration(0,0,0); accel.win = successCallback; accel.fail = errorCallback; accel.opts = options;