var Acceleration = function()

in www/Acceleration.js [22:27]


var Acceleration = function (x, y, z, timestamp) {
    this.x = x;
    this.y = y;
    this.z = z;
    this.timestamp = timestamp || new Date().getTime();
};