From 25bb2154ce030d65304fdf9546f1aeb6a70abc62 Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Tue, 16 Jul 2013 12:16:23 -0700 Subject: [PATCH] Updating with the new JS with the file fixes --- framework/assets/www/cordova.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/framework/assets/www/cordova.js b/framework/assets/www/cordova.js index ec28824c..b5f0f588 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