Skip to content
This repository has been archived by the owner on Sep 28, 2019. It is now read-only.

<dom-if> support

Compare
Choose a tag to compare
@TimvdLippe TimvdLippe released this 09 Oct 10:27
· 19 commits to master since this release

<dom-if> is now supported:

<iron-lazy-pages
    attr-for-selected="data-route"
    selected="{{route}}"
    loading="{{loading}}"
    hide-immediately>
  <template is="dom-if" data-route="foo" restamp>
    Leaving this tab and coming back will loose input value due to restamp<br/>
    <input type="text"/>
  </template>
  <template is="dom-if" data-route="bar">
    Leaving this tab and coming back will keep input value<br/>
    <input type="text"/>
  </template>
</iron-lazy-pages>