But the app is falling with Uncaught Error: Missing helper: 'format_date'.
I guess it is falling because the helpers aren't registered by handlebars yet, so I tried to change my Gruntfile.js to watch and compile the /scripts/templates/helpers folder, but the problem still happening.
I know it is more a handlebars question than a generator-backbone, but since I generated the app using this generator, I think you could help me figure out what I'm missing here :)
Hi Guys!
I created a backbone app with this generator some time ago, and now I want to use a custom handlebars helper.
So I created this helper:
And called it on my template:
But the app is falling with
Uncaught Error: Missing helper: 'format_date'
.I guess it is falling because the helpers aren't registered by handlebars yet, so I tried to change my Gruntfile.js to watch and compile the
/scripts/templates/helpers
folder, but the problem still happening.I know it is more a handlebars question than a generator-backbone, but since I generated the app using this generator, I think you could help me figure out what I'm missing here :)
Thank you.