Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 310D8F4D0 for ; Wed, 17 Jul 2013 03:05:36 +0000 (UTC) Received: (qmail 40328 invoked by uid 500); 17 Jul 2013 03:05:35 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 40262 invoked by uid 500); 17 Jul 2013 03:05:32 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 40248 invoked by uid 99); 17 Jul 2013 03:05:31 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 17 Jul 2013 03:05:31 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 3114D8AB384; Wed, 17 Jul 2013 03:05:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: agrieve@apache.org To: commits@cordova.apache.org Date: Wed, 17 Jul 2013 03:05:30 -0000 Message-Id: <2859ce458cb04e9e90caa17c42b9eaa0@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] js commit: [CB-4187] Fix the fix for start-up when no plugins are installed. Updated Branches: refs/heads/3.0.x 3a3f0ce1a -> a1110ecc2 refs/heads/master f947df199 -> ab2cb2cf6 [CB-4187] Fix the fix for start-up when no plugins are installed. Project: http://git-wip-us.apache.org/repos/asf/cordova-js/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-js/commit/ab2cb2cf Tree: http://git-wip-us.apache.org/repos/asf/cordova-js/tree/ab2cb2cf Diff: http://git-wip-us.apache.org/repos/asf/cordova-js/diff/ab2cb2cf Branch: refs/heads/master Commit: ab2cb2cf6d3839373a0fa1372f2383fd17b93ecb Parents: f947df1 Author: Andrew Grieve Authored: Tue Jul 16 23:03:04 2013 -0400 Committer: Andrew Grieve Committed: Tue Jul 16 23:03:04 2013 -0400 ---------------------------------------------------------------------- lib/common/pluginloader.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-js/blob/ab2cb2cf/lib/common/pluginloader.js ---------------------------------------------------------------------- diff --git a/lib/common/pluginloader.js b/lib/common/pluginloader.js index 5f61b39..19f84bb 100644 --- a/lib/common/pluginloader.js +++ b/lib/common/pluginloader.js @@ -81,7 +81,7 @@ function handlePluginsObject(path, moduleList) { var scriptCounter = moduleList.length; if (!scriptCounter) { - onScriptLoadingComplete(); + finishPluginLoading(); return; } function scriptLoadedCallback() {