matthewp / bram

Web components, live bound templates, in 4kB

Home Page:https://bramjs.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Binding syntax shouldn't be required for if/each

matthewp opened this issue · comments

This shouldn't be needed:

<template if="{{condition}}">
  <div>Something here</div>
</template>

Instead it should be:

<template if="condition">
  <div>Something here</div>
</template>

It no longer is.