You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2013/01/24 22:27:40 UTC

[2/4] js commit: [all] modulemapper refactor for battery.

[all] modulemapper refactor for battery.

https://issues.apache.org/jira/browse/CB-2227


Project: http://git-wip-us.apache.org/repos/asf/cordova-js/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-js/commit/13df7db4
Tree: http://git-wip-us.apache.org/repos/asf/cordova-js/tree/13df7db4
Diff: http://git-wip-us.apache.org/repos/asf/cordova-js/diff/13df7db4

Branch: refs/heads/symbolmapping
Commit: 13df7db4ac80342d506bf29c41942cbc1e49acf1
Parents: e287b31
Author: Andrew Grieve <ag...@chromium.org>
Authored: Thu Jan 24 15:58:00 2013 -0500
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Thu Jan 24 15:58:00 2013 -0500

----------------------------------------------------------------------
 lib/common/common.js                 |    3 ---
 lib/common/plugin/battery/symbols.js |   24 ++++++++++++++++++++++++
 2 files changed, 24 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-js/blob/13df7db4/lib/common/common.js
----------------------------------------------------------------------
diff --git a/lib/common/common.js b/lib/common/common.js
index fe55399..f4f298b 100644
--- a/lib/common/common.js
+++ b/lib/common/common.js
@@ -47,9 +47,6 @@ module.exports = {
                 notification: {
                     path: 'cordova/plugin/notification'
                 },
-                battery: {
-                    path: 'cordova/plugin/battery'
-                },
                 camera:{
                     path: 'cordova/plugin/Camera'
                 },

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/13df7db4/lib/common/plugin/battery/symbols.js
----------------------------------------------------------------------
diff --git a/lib/common/plugin/battery/symbols.js b/lib/common/plugin/battery/symbols.js
new file mode 100644
index 0000000..729830c
--- /dev/null
+++ b/lib/common/plugin/battery/symbols.js
@@ -0,0 +1,24 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
+*/
+
+
+var modulemapper = require('cordova/modulemapper');
+
+modulemapper.defaults('cordova/plugin/battery', 'navigator.battery');