Eco (Embedded Coffee Script) Error - Unexpected Dedent
Ran into this error when testing out eco (Embedded Coffee Script) templates.
Parse error on line #: unexpected dedent
(in C:/project/app/assets/javascripts/backbone/templates/dartboard.jst.eco)
Broken code:
1 2 3 | |
Fixed Code:
1 2 3 | |
Notice the colon, this is telling coffeescript that the next line is indented. It’s document here: https://github.com/sstephenson/eco it had just slipped my mind.
Ry