You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2013/07/17 05:05:31 UTC

[2/2] js commit: [CB-4187] Fix the fix for start-up when no plugins are installed.

[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/a1110ecc
Tree: http://git-wip-us.apache.org/repos/asf/cordova-js/tree/a1110ecc
Diff: http://git-wip-us.apache.org/repos/asf/cordova-js/diff/a1110ecc

Branch: refs/heads/3.0.x
Commit: a1110ecc235a6cc210b2767f0c762df366de3f9c
Parents: 3a3f0ce
Author: Andrew Grieve <ag...@chromium.org>
Authored: Tue Jul 16 23:03:04 2013 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Tue Jul 16 23:03:30 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/a1110ecc/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() {