-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CB-7179 (iOS): Add WKWebView support for iOS #271
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
27e6c67
CB-7179 (iOS): Add support to optionally use WKWebView for iOS
dpa99c b48e02f
fix iOS 10 build
dpa99c dc7fa34
CB-7179 (iOS): Add support to optionally use WKWebView for iOS
dpa99c e2210bd
Merge branch 'CB-7179' of https://github.com/dpa99c/cordova-plugin-in…
dpa99c 8165232
experimental commit
janpio 52e3534
update test configuration to xcode8.3
janpio cbfa195
Merge branch 'master' into CB-7179
janpio 86cc778
Fix tests so they auto-start when run via cordova-paramedic
dpa99c 5d2df21
Merge branch 'CB-7179' of https://github.com/dpa99c/cordova-plugin-in…
dpa99c 7f5fa2a
Add plugin to fix reporting of cordova-paramedic results when using W…
dpa99c 19c6dfe
Merge branch 'master' into CB-7179
dpa99c c41f5b5
Fix merge error
dpa99c 61014dd
Fix indentation of tests.js for eslint
dpa99c 8248215
Comment out iOS 9 target for Travis tests since it's not supported by…
dpa99c 3927b8f
Merge branch 'CB-7179' of https://github.com/dpa99c/cordova-plugin-th…
dpa99c File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does this
onload
param do? Couldn't find it anywhere else.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
onload
specifies whether to initialize the plugin when the app controller initializes. There's some docs about it here.It ensures that
pluginInitialize()
is called on app startup, rather than the first plugin invocation.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I learned something, thanks ;)
Why this change? Could this have any side effects?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It just ensures that the default values defined by
pluginInitialize()
are set right away at app startup.I don't remember the exact reason it was needed (it's been a few months since I created this PR) but I'm pretty sure it was necessary.
The change is minimal and will not cause side effects.