Here is the code snippet I am currently working with:
<input type="date" name="dat" ng-model="dat" placeholder="date">
<h3>Date: {{dat | date:'fullDate'}}</h3>
{{1288323623006 | date:'fullDate'}}
Interestingly, the first interpolation does not display any value regardless of what I enter in the input field. However, the second interpolation shows the date correctly as expected. This issue only arises in Angular version 1.4.5 but works fine in earlier versions like 1.2.x. I have tried searching on Google for solutions related to updates in the date filter, but could not find anything useful.
I also noticed that changing the input element type to number eliminates this problem, even when using Angular 1.4.5.