Skip to content

Commit 3dee9be

Browse files
willshowelljelbourn
authored andcommitted
docs(tabs): add description for dynamicHeight (#5275)
1 parent 96a7c13 commit 3dee9be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/tabs/tab-group.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ export class MdTabGroup {
6565
/** Snapshot of the height of the tab body wrapper before another tab is activated. */
6666
private _tabBodyWrapperHeight: number = 0;
6767

68-
/** Whether the tab group should grow to the size of the active tab */
69-
private _dynamicHeight: boolean = false;
68+
/** Whether the tab group should grow to the size of the active tab. */
7069
@Input()
7170
get dynamicHeight(): boolean { return this._dynamicHeight; }
7271
set dynamicHeight(value: boolean) { this._dynamicHeight = coerceBooleanProperty(value); }
72+
private _dynamicHeight: boolean = false;
7373

7474
/** @deprecated */
7575
@Input('md-dynamic-height')

0 commit comments

Comments
 (0)