From 3680719dd5845f8580b1b429d13e8812f5f52e93 Mon Sep 17 00:00:00 2001 From: Thomas Hendriksen Date: Tue, 6 Dec 2016 21:56:46 +0100 Subject: [PATCH] Added height property to IDialogOptions --- ng-dialog/ng-dialog.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ng-dialog/ng-dialog.d.ts b/ng-dialog/ng-dialog.d.ts index 7b70874408..71757165de 100644 --- a/ng-dialog/ng-dialog.d.ts +++ b/ng-dialog/ng-dialog.d.ts @@ -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; } /**