You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by bo...@apache.org on 2013/07/16 21:16:54 UTC

[4/4] android commit: Updating with the new JS with the file fixes

Updating with the new JS with the file fixes


Project: http://git-wip-us.apache.org/repos/asf/cordova-android/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-android/commit/25bb2154
Tree: http://git-wip-us.apache.org/repos/asf/cordova-android/tree/25bb2154
Diff: http://git-wip-us.apache.org/repos/asf/cordova-android/diff/25bb2154

Branch: refs/heads/3.0.x
Commit: 25bb2154ce030d65304fdf9546f1aeb6a70abc62
Parents: d514983
Author: Joe Bowser <bo...@apache.org>
Authored: Tue Jul 16 12:16:23 2013 -0700
Committer: Joe Bowser <bo...@apache.org>
Committed: Tue Jul 16 12:16:23 2013 -0700

----------------------------------------------------------------------
 framework/assets/www/cordova.js | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-android/blob/25bb2154/framework/assets/www/cordova.js
----------------------------------------------------------------------
diff --git a/framework/assets/www/cordova.js b/framework/assets/www/cordova.js
index ec28824..b5f0f58 100644
--- a/framework/assets/www/cordova.js
+++ b/framework/assets/www/cordova.js
@@ -1,5 +1,5 @@
 // Platform: android
-// 3.0.0-dev-18-g525e76b
+// 3.0.0rc1-0-g1965a39
 /*
  Licensed to the Apache Software Foundation (ASF) under one
  or more contributor license agreements.  See the NOTICE file
@@ -19,7 +19,7 @@
  under the License.
 */
 ;(function() {
-var CORDOVA_JS_BUILD_LABEL = '3.0.0-dev-18-g525e76b';
+var CORDOVA_JS_BUILD_LABEL = '3.0.0rc1-0-g1965a39';
 // file: lib/scripts/require.js
 
 var require,
@@ -900,7 +900,7 @@ function androidExec(success, fail, service, action, args) {
     // Process any ArrayBuffers in the args into a string.
     for (var i = 0; i < args.length; i++) {
         if (utils.typeName(args[i]) == 'ArrayBuffer') {
-            args[i] = utils.encodeBase64(args[i]);
+            args[i] = base64.fromArrayBuffer(args[i]);
         }
     }
 
@@ -2117,4 +2117,4 @@ window.cordova = require('cordova');
 require('cordova/exec')(null, null, 'PluginManager', 'startup', []);
 require('cordova/channel').onNativeReady.fire();
 
-})();
+})();
\ No newline at end of file