greatCodeIdeas / md-date-range-picker

Angular Material Date Range Picker Service/Directive
MIT License
62 stars 40 forks source link

Setting start date time to end of day #52

Closed fnnek closed 6 years ago

fnnek commented 6 years ago

Line 150, there's $scope.dateEnd && $scope.dateStart.setHours(23, 59, 59, 999); instead of $scope.dateEnd && $scope.dateEnd.setHours(23, 59, 59, 999);

It couses troubles when you want to set start date at start.

roelbarreto commented 6 years ago

this should be $scope.dateEnd && $scope.dateEnd.setHours(23, 59, 59, 999); Thanks @fnnek for pointing this out. I'll have a patch or you can do PR