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 d6367a9 commit 9955475Copy full SHA for 9955475
src/demo-app/input/input-demo.html
@@ -93,7 +93,7 @@ <h4>With `rows` explicitly set</h4>
93
placeholder="Textarea with autosize"
94
class="demo-full-width"
95
autosize
96
- rows="8"
+ [rows]="rows"
97
value="Hello world. How are you?">
98
</md-textarea>
99
</div>
src/demo-app/input/input-demo.ts
@@ -21,6 +21,7 @@ export class InputDemo {
21
{ value: 40 },
22
{ value: 50 },
23
];
24
+ rows = 8;
25
26
addABunch(n: number) {
27
for (let x = 0; x < n; x++) {
0 commit comments