Added height property to IDialogOptions

This commit is contained in:
Thomas Hendriksen
2016-12-06 21:56:46 +01:00
parent bddf14ed27
commit 3680719dd5

View File

@@ -227,6 +227,11 @@ declare namespace angular.dialog {
* Specifies the width of the dialog content element. Default value is null (unspecified)
*/
width?: string|number;
/**
* Specifies the height of the dialog content element. Default value is null (unspecified)
*/
height?: string|number;
}
/**