Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
purplecabbage committed Jul 14, 2015
2 parents 8588542 + 7b8f3b8 commit 1ab1e94
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
13 changes: 12 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,18 @@
# http://www.appveyor.com/docs/appveyor-yml

install:
- npm install
- cd ..
- git clone https://github.com/apache/cordova-android --depth 10
- git clone https://github.com/apache/cordova-ios --depth 10
- git clone https://github.com/apache/cordova-blackberry --depth 10
- git clone https://github.com/apache/cordova-windows --depth 10
- git clone https://github.com/apache/cordova-wp8 --depth 10
- git clone https://github.com/apache/cordova-ubuntu --depth 10
- git clone https://github.com/apache/cordova-browser --depth 10
- git clone https://github.com/apache/cordova-amazon-fireos --depth 10
- git clone https://github.com/apache/cordova-webos --depth 10
- cd cordova-js
- npm install

build: off

Expand Down
1 change: 1 addition & 0 deletions src/common/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ if (!window.console.warn) {
// Register pause, resume and deviceready channels as events on document.
channel.onPause = cordova.addDocumentEventHandler('pause');
channel.onResume = cordova.addDocumentEventHandler('resume');
channel.onActivated = cordova.addDocumentEventHandler('activated');
channel.onDeviceReady = cordova.addStickyDocumentEventHandler('deviceready');

// Listen for DOMContentLoaded and notify our channel subscribers.
Expand Down
1 change: 1 addition & 0 deletions src/common/init_b.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ if (!window.console.warn) {
// Register pause, resume and deviceready channels as events on document.
channel.onPause = cordova.addDocumentEventHandler('pause');
channel.onResume = cordova.addDocumentEventHandler('resume');
channel.onActivated = cordova.addDocumentEventHandler('activated');
channel.onDeviceReady = cordova.addStickyDocumentEventHandler('deviceready');

// Listen for DOMContentLoaded and notify our channel subscribers.
Expand Down

0 comments on commit 1ab1e94

Please sign in to comment.