Skip to content

Instantly share code, notes, and snippets.

@jacobk
Created March 7, 2013 10:24
Show Gist options
  • Save jacobk/5107049 to your computer and use it in GitHub Desktop.
Save jacobk/5107049 to your computer and use it in GitHub Desktop.
Ember.Handlebars.registerBoundHelper('naivePluralize', function(count, word) {
return count === 1 ? word : word + 's';
});
<!-- count comes from the controller -->
{{naivePluralize count 'dog'}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment