You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by fi...@apache.org on 2012/05/14 21:59:49 UTC

js commit: removing a console.log :)

Updated Branches:
  refs/heads/462 93114881c -> 7b6ae77e5


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/7b6ae77e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/tree/7b6ae77e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/diff/7b6ae77e

Branch: refs/heads/462
Commit: 7b6ae77e5030060e8e99fe0b79ddcf9d698bf375
Parents: 9311488
Author: Fil Maj <ma...@gmail.com>
Authored: Mon May 14 13:03:12 2012 -0700
Committer: Fil Maj <ma...@gmail.com>
Committed: Mon May 14 13:03:12 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/7b6ae77e/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);
         };