I'm discovering Meteor and was asking myself for a thing. How in a template can we reverse the boolean into the handlebars from a template ?
There is an example of what I'm trying to do :
task.html
<li class="{{#if !checked}}checked{{/if}}">
...
But I'm getting an error "Expected close "}}". Maybe it's not possible.
Thank you !