Support {{unless}} in virtual dom templates

This commit is contained in:
Robin Ward
2017-10-05 14:34:47 -04:00
parent 7df73c94a0
commit 07d04aba1d
2 changed files with 8 additions and 1 deletions

View File

@ -5,6 +5,9 @@ template = <<~HBS
{{#if state.category}}
{{attach widget="category-display" attrs=(hash category=state.category someNumber=123 someString="wat")}}
{{/if}}
{{#unless state.hello}}
XYZ
{{/unless}}
HBS
ctx = MiniRacer::Context.new(timeout: 15000)