Updated Branches: refs/heads/master 40cc068ac -> e9e51c13f
Fix require paths that were broken by plugin id changes Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/commit/e9e51c13 Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/tree/e9e51c13 Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/diff/e9e51c13 Branch: refs/heads/master Commit: e9e51c13f48e366ca68726128b77b3450b0dabf3 Parents: b1b62e4 Author: Andrew Grieve <[email protected]> Authored: Fri Jun 28 19:46:10 2013 -0400 Committer: Andrew Grieve <[email protected]> Committed: Fri Jun 28 20:05:20 2013 -0400 ---------------------------------------------------------------------- plugin.xml | 2 +- src/wp7/Globalization.cs | 2 +- src/wp8/Globalization.cs | 2 +- www/globalization.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/blob/e9e51c13/plugin.xml ---------------------------------------------------------------------- diff --git a/plugin.xml b/plugin.xml index aebcf34..83178d8 100644 --- a/plugin.xml +++ b/plugin.xml @@ -16,7 +16,7 @@ <!-- android --> <platform name="android"> <config-file target="res/xml/config.xml" parent="/*"> - <feature name="Globalization" value="org.apache.cordova.core.Globalization"/> + <feature name="Globalization" value="org.apache.cordova.core.globalization"/> </config-file> <source-file src="src/android/Globalization.java" target-dir="src/org/apache/cordova/core" /> http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/blob/e9e51c13/src/wp7/Globalization.cs ---------------------------------------------------------------------- diff --git a/src/wp7/Globalization.cs b/src/wp7/Globalization.cs index 1528807..ba2eb99 100644 --- a/src/wp7/Globalization.cs +++ b/src/wp7/Globalization.cs @@ -1175,4 +1175,4 @@ namespace WPCordovaClassLib.Cordova.Commands #endregion } -} \ No newline at end of file +} http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/blob/e9e51c13/src/wp8/Globalization.cs ---------------------------------------------------------------------- diff --git a/src/wp8/Globalization.cs b/src/wp8/Globalization.cs index 2c2f468..ffe27ec 100644 --- a/src/wp8/Globalization.cs +++ b/src/wp8/Globalization.cs @@ -1174,4 +1174,4 @@ namespace WPCordovaClassLib.Cordova.Commands #endregion } -} \ No newline at end of file +} http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/blob/e9e51c13/www/globalization.js ---------------------------------------------------------------------- diff --git a/www/globalization.js b/www/globalization.js index 5958a82..6ee5f3e 100644 --- a/www/globalization.js +++ b/www/globalization.js @@ -21,7 +21,7 @@ var argscheck = require('cordova/argscheck'), exec = require('cordova/exec'), - GlobalizationError = require('org.apache.cordova.core.Globalization.GlobalizationError'); + GlobalizationError = require('org.apache.cordova.core.globalization.GlobalizationError'); var globalization = {
