Updating with the new JS with the file fixes

This commit is contained in:
Joe Bowser 2013-07-16 12:16:23 -07:00
parent d514983ec9
commit 25bb2154ce

View File

@ -1,5 +1,5 @@
// Platform: android // Platform: android
// 3.0.0-dev-18-g525e76b // 3.0.0rc1-0-g1965a39
/* /*
Licensed to the Apache Software Foundation (ASF) under one Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file or more contributor license agreements. See the NOTICE file
@ -19,7 +19,7 @@
under the License. under the License.
*/ */
;(function() { ;(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 // file: lib/scripts/require.js
var require, var require,
@ -900,7 +900,7 @@ function androidExec(success, fail, service, action, args) {
// Process any ArrayBuffers in the args into a string. // Process any ArrayBuffers in the args into a string.
for (var i = 0; i < args.length; i++) { for (var i = 0; i < args.length; i++) {
if (utils.typeName(args[i]) == 'ArrayBuffer') { 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/exec')(null, null, 'PluginManager', 'startup', []);
require('cordova/channel').onNativeReady.fire(); require('cordova/channel').onNativeReady.fire();
})(); })();