Created
April 29, 2019 10:29
-
-
Save stenno/201cfaeca1895bf931a141cab7cab5b2 to your computer and use it in GitHub Desktop.
angular isBeforeMinDate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scope.isBeforeMinDate = (month, first) => { | |
const { year } = scope.currentSelection; | |
const date = moment(`${first ? '01' : '15'}-${month}-${year}`, 'DD.MM.YYYY'); | |
$log.info("GOING TO RETURN ", !!(scope.earliestMoment && date.isBefore(scope.earliestMoment))); | |
return (scope.earliestMoment && date.isBefore(scope.earliestMoment)) ? true : false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment