cordova-plugin-dialogs
cordova-plugin-dialogs copied to clipboard
Apache Cordova Dialogs Plugin
To match with the iOS behavior where all modals cannot be canceled by a click outside of it (or a back button). First of all, there is few case where...
### Platforms affected Android ### What does this PR do? Ensures notifications stop after playing. This fixes the issue we had when after 15 notifications, the 16th notification would not...
### Platforms affected ### What does this PR do? ### What testing has been done on this change? ### Checklist - [ ] [Reported an issue](http://cordova.apache.org/contribute/issues.html) in the JIRA database...
I installed via: (Windows 10) cordova plugin add cordova-plugin-dialogs And when I use navigator.notification.alert() function, my code does not work, if I use only alert() (without navigator.notification) shows the classic...
Hello! When I enter a long text to the prompt dialog the ios doesn't wrap into multiple lines and I can't see the whole message. Android is works well. ...
* Fixes for Android: - remove trailing whitespace - remove extra blank line - convert tabs to spaces (and space after an if statement) * Fixes for iOS - remove...
Proposal to cherry-pick the fix proposed in PR #28 _without the whitespace fixes that are now part of PR #109_. The change in behavior makes sense to me. I think...
Only did it for Android because the problem only occurred here.
### Platforms affected Android ### What does this PR do? Created new `setAndroidStyleName` function to allow specifying the name of a style to apply to dialogs on Android. Also updated...
By using android.text.Html, the message of the AlertDialog can support html which is a very useful feature. I hope this can be added to all type of dialog messages: dlg.setMessage(Html.fromHtml(message));