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/08/01 01:58:03 UTC

git commit: [CB-4417] Move cordova-plugin-console to its own Java package.

Updated Branches:
  refs/heads/dev cf69191a6 -> e33cdd9e8


[CB-4417] Move cordova-plugin-console to its own Java package.


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/commit/e33cdd9e
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/tree/e33cdd9e
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/diff/e33cdd9e

Branch: refs/heads/dev
Commit: e33cdd9e8a0f10c2b2c15951b3ae6f2e358e1389
Parents: cf69191
Author: Andrew Grieve <ag...@chromium.org>
Authored: Wed Jul 31 19:57:24 2013 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Wed Jul 31 19:57:24 2013 -0400

----------------------------------------------------------------------
 plugin.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/blob/e33cdd9e/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index f1eb9e7..47c1820 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -66,4 +66,15 @@
         <source-file src="src/wp/DebugConsole.cs" />
     </platform>
 
+        <!-- windows8 -->
+    <platform name="windows8">
+        <js-module src="www/logger.js" name="logger">
+            <clobbers target="cordova.logger" />
+        </js-module>
+        <js-module src="www/console-via-logger.js" name="console">
+            <clobbers target="console" />
+        </js-module>
+
+    </platform>
+
 </plugin>