From 312592e8fb2ff554c4010b6303d894a370104cde Mon Sep 17 00:00:00 2001 From: Nelson Lamprecht Date: Tue, 22 Sep 2015 07:23:19 -0500 Subject: [PATCH] Updated SharePoint.d.ts with correct type of boolean instead of number for showMaximized of IDialogOptions,DialogOptions https://msdn.microsoft.com/en-us/library/ff410058(v=office.14).aspx --- sharepoint/SharePoint.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sharepoint/SharePoint.d.ts b/sharepoint/SharePoint.d.ts index 2981718eb..181c40491 100644 --- a/sharepoint/SharePoint.d.ts +++ b/sharepoint/SharePoint.d.ts @@ -7159,7 +7159,7 @@ declare module SP { /** Y coordinate of the dialog box. */ y?: number; /** The dialog will be maximized when shown. */ - showMaximized?: number; + showMaximized?: boolean; /** url of the page which is shown in the modal dialog. You should use either html or url attribute, but not both. */ url?: string; /** specifies if close button should be shown on the dialog */ @@ -7191,7 +7191,7 @@ declare module SP { /** Y coordinate of the dialog box. */ y: number; /** The dialog will be maximized when shown. */ - showMaximized: number; + showMaximized: boolean; /** url of the page which is shown in the modal dialog. You should use either html or url attribute, but not both. */ url: string; /** specifies if close button should be shown on the dialog */