-
-
Notifications
You must be signed in to change notification settings - Fork 66
Usage
OlaviSau edited this page Jul 1, 2015
·
6 revisions
Just a quick overview of new features/changes, NOT COMPREHENSIVE
Some code from http://colintoh.com/blog/htmlbars
Classes
{{!-- Handlebars Method --}}
<div {{bind-attr class=:staticClass dynamicClass isCondition:yes:no}}> .... </div>
{{!-- HTMLBar Method --}}
<div class="staticClass {{dynamicCLass}}{{ if isCondition 'yes' 'no'}}"> .... </div>
Binds
<div style="color:{{divColor}}"> .... </div>
Inline If helper
{{!-- Current Method --}}
{{#if authenticated}}`
I'm logged in too!
{{/if}}
{{!-- HTMLBar Method --}}
{{if authenticated "I'm logged"}}