Skip to content

Instantly share code, notes, and snippets.

@stsatlantis
Last active June 15, 2016 06:11
Show Gist options
  • Save stsatlantis/f5871889055edbc8b57b21cc1b2ac9f4 to your computer and use it in GitHub Desktop.
Save stsatlantis/f5871889055edbc8b57b21cc1b2ac9f4 to your computer and use it in GitHub Desktop.
## HMTL:
<span class="label" ng-style="vm.decorateLabel(entity)">{{entity.name}}</span>
## JavaScript:
vm.decorateLabel = decorateLabel;
function decorateLabel(entity) {
return {
"color": entity.fontColor,
"background-color": entity.backgroundColor
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment