removing a console.log :)
Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/commit/2d0cef39 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/tree/2d0cef39 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/diff/2d0cef39 Branch: refs/heads/master Commit: 2d0cef3933afc636fea2a989d7887f8c32cffa07 Parents: 59ba352 Author: Fil Maj <maj....@gmail.com> Authored: Mon May 14 13:03:12 2012 -0700 Committer: Fil Maj <maj....@gmail.com> Committed: Fri May 18 15:14:37 2012 -0700 ---------------------------------------------------------------------- lib/common/plugin/accelerometer.js | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/2d0cef39/lib/common/plugin/accelerometer.js ---------------------------------------------------------------------- diff --git a/lib/common/plugin/accelerometer.js b/lib/common/plugin/accelerometer.js index 7d49b15..f0841e0 100644 --- a/lib/common/plugin/accelerometer.js +++ b/lib/common/plugin/accelerometer.js @@ -63,7 +63,6 @@ var accelerometer = { // Success callback from native just updates the accel object. var win = function(a) { - console.log('inside watchaccel win, ' + JSON.stringify(a)); accel = new Acceleration(a.x, a.y, a.z, a.timestamp); };