Skip to content

Instantly share code, notes, and snippets.

@fastfrwrd
Created October 1, 2013 19:46
Show Gist options
  • Save fastfrwrd/6784020 to your computer and use it in GitHub Desktop.
Save fastfrwrd/6784020 to your computer and use it in GitHub Desktop.
var data = {
attribute_data: { ... }
cc_num: function() {
if (this.attribute_data.payment.cc_number) {
return OneIdUtil.prettyPrint(this.attribute_data.payment.cc_number)
} else return null;
}
};
// in the template
<span>{{ cc_num }}</span>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment