When I try to pass an Ember binding or computed property to a custom Handlebars helper, the helper receives the string instead of the value. How do I get the value into the helper?
The template:
{{my_helper my.binding}}
The helper receives "my.binding" instead of the corresponding value.