Created
April 6, 2018 15:50
-
-
Save vladthelittleone/a2df653b8594e78db7f20b09b4bff8b8 to your computer and use it in GitHub Desktop.
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.soldierDateA = function (soldier) { | |
| const soldierData = $scope.todayDate - soldier.start; | |
| const soldierSrok = soldier.stop - soldier.start; | |
| if(soldierData> soldierSrok) | |
| { | |
| return { | |
| "color" : "red", | |
| "background-color" : "white" | |
| }; | |
| } | |
| else { | |
| return { | |
| "color" : "blue", | |
| "background-color" : "white" | |
| } | |
| } | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment