Skip to content

Instantly share code, notes, and snippets.

@vladthelittleone
Created April 6, 2018 15:50
Show Gist options
  • Select an option

  • Save vladthelittleone/a2df653b8594e78db7f20b09b4bff8b8 to your computer and use it in GitHub Desktop.

Select an option

Save vladthelittleone/a2df653b8594e78db7f20b09b4bff8b8 to your computer and use it in GitHub Desktop.
$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