Format Date Error In Ember JS: Could Not Find Property On Object
Uncaught Error: Handlebars error: Could not find property 'format-date' on object (generated post controller). in ember js
Solution 1:
This error is thrown when the handlebars template contains a custom helper that is not registered.
Example (look at the console output)
http://emberjs.jsbin.com/gosegede/1/edit
hbs
<script type="text/x-handlebars" data-template-name="index">
{{format-date "test"}}
</script>
Post a Comment for "Format Date Error In Ember JS: Could Not Find Property On Object"