mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-07 23:03:11 +08:00
Updating with the new JS with the file fixes
This commit is contained in:
parent
d514983ec9
commit
25bb2154ce
6
framework/assets/www/cordova.js
vendored
6
framework/assets/www/cordova.js
vendored
@ -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]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user