From 909e6645e79d3f2ac0dde25b2d89f1b9e1c440d6 Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Thu, 25 Apr 2013 14:55:11 -0700 Subject: [PATCH] Updating JS for Android --- framework/assets/js/cordova.android.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/framework/assets/js/cordova.android.js b/framework/assets/js/cordova.android.js index 8be31500..ec1a2de5 100644 --- a/framework/assets/js/cordova.android.js +++ b/framework/assets/js/cordova.android.js @@ -1,8 +1,8 @@ // Platform: android -// commit 360bd3e65c33ce4f01e2efb82d641a565ef3c333 +// commit cd29cf0f224ccf25e9d422a33fd02ef67d3a78f4 -// File generated at :: Fri Apr 19 2013 17:55:18 GMT-0700 (PDT) +// File generated at :: Thu Apr 25 2013 14:53:10 GMT-0700 (PDT) /* Licensed to the Apache Software Foundation (ASF) under one @@ -6813,7 +6813,7 @@ require('cordova/channel').onNativeReady.fire(); xhr.onload = function() { // If the response is a JSON string which composes an array, call handlePluginsObject. // If the request fails, or the response is not a JSON array, just call finishPluginLoading. - var obj = JSON.parse(this.responseText); + var obj = this.responseText && JSON.parse(this.responseText); if (obj && obj instanceof Array && obj.length > 0) { handlePluginsObject(obj); } else {