We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96a7c13 commit 3dee9beCopy full SHA for 3dee9be
src/lib/tabs/tab-group.ts
@@ -65,11 +65,11 @@ export class MdTabGroup {
65
/** Snapshot of the height of the tab body wrapper before another tab is activated. */
66
private _tabBodyWrapperHeight: number = 0;
67
68
- /** Whether the tab group should grow to the size of the active tab */
69
- private _dynamicHeight: boolean = false;
+ /** Whether the tab group should grow to the size of the active tab. */
70
@Input()
71
get dynamicHeight(): boolean { return this._dynamicHeight; }
72
set dynamicHeight(value: boolean) { this._dynamicHeight = coerceBooleanProperty(value); }
+ private _dynamicHeight: boolean = false;
73
74
/** @deprecated */
75
@Input('md-dynamic-height')
0 commit comments