From 73f179d3b6cf5c4b7df2cc88d4a13688cf9f8348 Mon Sep 17 00:00:00 2001 From: Nathanael Anderson Date: Thu, 12 Nov 2015 16:51:47 -0600 Subject: [PATCH] Added the cancelable to the dialogs.d.ts --- ui/dialogs/dialogs.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ui/dialogs/dialogs.d.ts b/ui/dialogs/dialogs.d.ts index 8114eb669..7db01cdc8 100644 --- a/ui/dialogs/dialogs.d.ts +++ b/ui/dialogs/dialogs.d.ts @@ -120,6 +120,12 @@ declare module "ui/dialogs" { * Gets or sets the dialog message. */ message?: string; + + /** + * Sets if the Android dialog can be canceled via clicking outside of it + * defaults to true. + */ + cancelable?: boolean; } /**