Writing a Handlebars Helper for Ember.js
Handlebars [https://github.com/wycats/handlebars.js/] is a simple templating language that binds data to the HTML document. Handlebars templates keep our views nice and light by allowing us to inject data via Handlebars expressions–– {{some-awesome-data}}. In an Ember application, Handlebars will allow you to bind data to the… »