Skip to content

Commit

Permalink
fix issue #16
Browse files Browse the repository at this point in the history
  • Loading branch information
markmarijnissen committed Mar 17, 2015
1 parent 0dc8deb commit 0837a88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,7 @@ Here is a flow chart:
### 0.15.0 (17/03/2013)

* Fix: Missing reject (issue #26) -- thanks very much @pheinicke!
* Fix: Promise.resolve is not in A+ spec. (issue #23).
* Updated cordova-file-cache dependency.

### 0.14.0 (22/1/2014)
Expand Down
2 changes: 1 addition & 1 deletion bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function loadManifest(manifest,fromLocalStorage,timeout){

// Step 5: Load Scripts
// If we're loading Cordova files, make sure Cordova is ready first!
if(manifest.root.substr(0,7) === 'cdvfile'){
if(typeof window.cordova !== 'undefined'){
document.addEventListener("deviceready", loadScripts, false);
} else {
loadScripts();
Expand Down

0 comments on commit 0837a88

Please sign in to comment.