Repository: cordova-plugin-dialogs Updated Branches: refs/heads/master fc6134f0b -> fd874c4f3
Add comment about other implementation. Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/commit/fd874c4f Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/tree/fd874c4f Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/diff/fd874c4f Branch: refs/heads/master Commit: fd874c4f316e9ec423b9b9338c04cd2a20c1c096 Parents: fc6134f Author: Marcel Kinard <[email protected]> Authored: Mon Jun 9 15:44:16 2014 -0400 Committer: Marcel Kinard <[email protected]> Committed: Mon Jun 9 15:44:16 2014 -0400 ---------------------------------------------------------------------- src/android/Notification.java | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/blob/fd874c4f/src/android/Notification.java ---------------------------------------------------------------------- diff --git a/src/android/Notification.java b/src/android/Notification.java index 1808dfe..23312b4 100755 --- a/src/android/Notification.java +++ b/src/android/Notification.java @@ -35,6 +35,11 @@ import android.widget.EditText; /** * This class provides access to notifications on the device. + * + * Be aware that this implementation gets called on + * navigator.notification.{alert|confirm|prompt}, and that there is a separate + * implementation in org.apache.cordova.CordovaChromeClient that gets + * called on a simple window.{alert|confirm|prompt}. */ public class Notification extends CordovaPlugin {
