I have a super-simple Angular app:
<div ng-app>
<ul>
<li ng_if='true'>
<textarea placeholder='Hello'></textarea>
</li>
</ul>
</div>
That's it. No JS / CSS.
In FF (34.0 on OSX), the placeholder in the Textarea will not show up until the textarea is focused.
What I've discovered thus far:
- It's only on textarea. Text inputs are fine.
- It's only when it's within a child $scope. If the
ng-if
wasn't there, the issue would disappear.
Play around with it here.
I'm out of ideas. Any help would be super appreciated! :)