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
This commit is contained in:
Nelson Lamprecht
2015-09-22 07:23:19 -05:00
parent 6f6e5c7dd9
commit 312592e8fb
+2 -2
View File
@@ -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 */