Updated Branches: refs/heads/master c0f68da4d -> a33b47d5a
[all] Fix typo in bootstrap that caused modules to not be merged in. Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/commit/a33b47d5 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/tree/a33b47d5 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/diff/a33b47d5 Branch: refs/heads/master Commit: a33b47d5ab3bf71c6a6ed3fdea17fd6b1bce2dd4 Parents: c0f68da Author: Andrew Grieve <[email protected]> Authored: Thu Nov 15 15:23:04 2012 -0500 Committer: Andrew Grieve <[email protected]> Committed: Thu Nov 15 15:23:04 2012 -0500 ---------------------------------------------------------------------- lib/scripts/bootstrap.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/a33b47d5/lib/scripts/bootstrap.js ---------------------------------------------------------------------- diff --git a/lib/scripts/bootstrap.js b/lib/scripts/bootstrap.js index e7f1a0e..0ac8ded 100644 --- a/lib/scripts/bootstrap.js +++ b/lib/scripts/bootstrap.js @@ -52,7 +52,7 @@ // Drop the platform-specific globals into the window object // and clobber any existing object. - if (platform.object) { + if (platform.objects) { builder.build(platform.objects).intoAndClobber(context); }
