could you please tell me why date field is not display in Firefox browser .
here is my code
http://plnkr.co/edit/roAQ9p0wOQplFpW4adSH?p=preview
On chrome it is showing 13-Sep-1997
I found the issue when I do new Date('13-Sep-1997')
it gives me invalid date but chrome works fine
Thats why I added moment
library .So how I will pass date object in date picker using moment js?? if it possible then we can show date in Firefox also
$scope.name = 'World';
console.log(moment)
var d = new Date("13-Sep-1997");
// var d =moment("13-Sep-1997","DD-MMM-YYYY").format('DD-MMM-YYYY')
var d2 = new Date(513938600000);
$scope.c = {
date: {
date:'date',
name: d
}
};