Skip to content

Instantly share code, notes, and snippets.

@glynrob
Created July 28, 2013 13:50
Show Gist options
  • Save glynrob/6098642 to your computer and use it in GitHub Desktop.
Save glynrob/6098642 to your computer and use it in GitHub Desktop.
Handlebars helper
Handlebars.registerHelper('fullName', function(person) {
return person.firstName + " " + person.lastName;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment