Skip to content

Commit 8c91a56

Browse files
authored
Merge pull request #28 from paulmorrishill/develop
Fixed exception with placeholder interpolation on IE10+
2 parents 392c6a6 + 6c425ed commit 8c91a56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/textarea.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class="form-control {{form.fieldHtmlClass}}"
66
id="{{form.key.slice(-1)[0]}}"
77
sf-changed="form"
8-
placeholder="{{form.placeholder}}"
8+
ng-attr-placeholder="{{form.placeholder}}"
99
ng-disabled="form.readonly"
1010
sf-field-model
1111
schema-validate="form"
@@ -19,7 +19,7 @@
1919
<textarea class="form-control {{form.fieldHtmlClass}}"
2020
id="{{form.key.slice(-1)[0]}}"
2121
sf-changed="form"
22-
placeholder="{{form.placeholder}}"
22+
ng-attr-placeholder="{{form.placeholder}}"
2323
ng-disabled="form.readonly"
2424
sf-field-model
2525
schema-validate="form"

0 commit comments

Comments
 (0)